@charset "UTF-8";
.gradient-primary {
  background-color: #fdc516;
  /*
  background: -moz-linear-gradient(top, #fed450 0%, #fdc618 100%);
  background: -webkit-linear-gradient(top, #fed450 0%,#fdc618 100%);
  background: linear-gradient(to bottom, #fed450 0%,#fdc618 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fed450', endColorstr='#fdc618',GradientType=0 );
  */
  background: -moz-linear-gradient(top, #fed450 0%, #fdc618 100%);
  background: -webkit-linear-gradient(top, #fed450 0%, #fdc618 100%);
  background: linear-gradient(to bottom, #fed450 0%, #fdc618 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fed450', endColorstr='#fdc618',GradientType=0 ); }

.gradient-black {
  background-color: #222222;
  background: -moz-linear-gradient(top, #222222 0, #0c0c0c 100%);
  background: -webkit-linear-gradient(top, #222222 0, #0c0c0c 100%);
  background: linear-gradient(to bottom, #222222 0, #0c0c0c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#222222',endColorstr='#0c0c0c',GradientType=0 ); }

/* --- Variables --- */
.button-font, .button, .button-secondary, .calculator #calculator-container .toggle label {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .085em;
  line-height: 1.25em;
  text-transform: uppercase;
  text-align: center; }

/* --- Basic Reset --- */
button,
.button,
a.button {
  text-decoration: none !important; }

.button, .button-secondary {
  display: inline-block;
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  z-index: 10;
  position: relative;
  padding: .75em 1.35em;
  margin-bottom: .85em;
  border-radius: 2em;
  color: rgba(17, 17, 17, 0.5); }
  .button:not(.primary), .button-secondary:not(.primary) {
    border: 0.2em solid rgba(17, 17, 17, 0.15);
    padding-top: calc(.75em - .1em);
    padding-bottom: calc(.75em - .1em);
    padding-left: calc(1.35em - .1em);
    padding-right: calc(1.35em - .1em); }
    .button:not(.primary):hover, .button-secondary:not(.primary):hover, .button:not(.primary):active, .button-secondary:not(.primary):active {
      box-shadow: none !important; }
  .button:hover, .button-secondary:hover {
    color: rgba(17, 17, 17, 0.75);
    border-color: rgba(17, 17, 17, 0.25); }
  .button:active, .button-secondary:active {
    color: #111111;
    border-color: rgba(17, 17, 17, 0.5); }
  .button:after, .button-secondary:after {
    -moz-transform: skewX(-35deg);
    -webkit-transform: skewX(-35deg);
    -o-transform: skewX(-35deg);
    -ms-transform: skewX(-35deg);
    transform: skewX(-35deg);
    display: block;
    position: absolute;
    transition: .3s;
    content: ' ';
    top: -10%;
    left: -10%;
    bottom: -10%;
    width: 0;
    height: 120%;
    z-index: -1;
    cursor: pointer; }
  .button:hover:after, .button-secondary:hover:after {
    left: -10%;
    width: 140%;
    cursor: pointer; }
  .primary.button:not(.button-custom-bg), .primary.button-secondary:not(.button-custom-bg) {
    background: -moz-linear-gradient(top, #fed450 0%, #fdc618 100%);
    background: -webkit-linear-gradient(top, #fed450 0%, #fdc618 100%);
    background: linear-gradient(to bottom, #fed450 0%, #fdc618 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fed450', endColorstr='#fdc618',GradientType=0 );
    color: #111;
    text-shadow: 0 0.05em 0 rgba(255, 255, 255, 0.5);
    border: 1px solid #fdc516;
    border-bottom-color: #fcae0c;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1); }
    .primary.button:not(.button-custom-bg):hover, .primary.button-secondary:not(.button-custom-bg):hover {
      color: #111; }
    .primary.button:not(.button-custom-bg):focus, .primary.button-secondary:not(.button-custom-bg):focus, .primary.button:not(.button-custom-bg):active, .primary.button-secondary:not(.button-custom-bg):active {
      -moz-transform: translateY(1px);
      -webkit-transform: translateY(1px);
      -o-transform: translateY(1px);
      -ms-transform: translateY(1px);
      transform: translateY(1px);
      -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
      box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2); }

/* --- Buttons with Icons --- */
.button i.fa {
  margin: 0;
  padding: 0;
  width: auto;
  padding-left: .35em; }

.button-custom-bg,
.button-w-icon {
  color: #FFF !important;
  cursor: pointer;
  border-width: 1px !important;
  padding: 0.75em 1.35em !important;
  text-shadow: 0 0.05em 0 rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1); }
  .button-custom-bg i.fa,
  .button-w-icon i.fa {
    position: absolute;
    line-height: inherit !important;
    right: 0;
    text-align: center;
    width: 3em;
    height: 100%;
    opacity: 0;
    padding: 0 !important;
    -moz-transform: translateX(-15%);
    -webkit-transform: translateX(-15%);
    -o-transform: translateX(-15%);
    -ms-transform: translateX(-15%);
    transform: translateX(-15%); }
  .button-custom-bg:hover i.fa,
  .button-w-icon:hover i.fa {
    opacity: 1;
    -moz-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -o-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px); }
  .button-custom-bg:before,
  .button-w-icon:before {
    content: ' ';
    background: rgba(0, 0, 0, 0);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%; }
  .button-custom-bg:after,
  .button-w-icon:after {
    content: ' ';
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%) !important;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%) !important;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#26ffffff', endColorstr='#00ffffff',GradientType=0) !important;
    -moz-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -o-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 100% !important; }
  .button-custom-bg:hover,
  .button-w-icon:hover {
    color: #FFF !important; }
    .button-custom-bg:hover:before,
    .button-w-icon:hover:before {
      display: none; }
  .button-custom-bg:focus, .button-custom-bg:active,
  .button-w-icon:focus,
  .button-w-icon:active {
    color: #FFF;
    -moz-transform: translateY(1px);
    -webkit-transform: translateY(1px);
    -o-transform: translateY(1px);
    -ms-transform: translateY(1px);
    transform: translateY(1px);
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2); }

/*
.button {
	input{
		margin: 0!important;
		padding: 0!important;
		background: transparent!important;
		border: none!important;
		@extend .button-font;
	}
}
*/
/* --- Input Submit --- */
button,
button.button,
input[type=submit].button {
  font-size: 16px !important; }

/* --- Button Group --- */
.button-group .button {
  margin-right: .85em; }

/* --- Sizes --- */
button.button-small,
.button-small {
  font-size: 12px !important; }

.button-block {
  display: block;
  width: 100%;
  padding-left: 0.85em !important;
  padding-right: 0.85em !important; }

/* --- States --- */
.button-disabled {
  opacity: .5; }

.button-disabled,
input[type=submit].button-disabled {
  cursor: not-allowed; }

/* --- Buttons in Modals --- */
.modular {
  position: relative; }
  .modular .section_bg-darkgrey .button:not(.primary):not(.button-w-icon),
  .modular .showcase .button:not(.primary):not(.button-w-icon),
  .modular .page-header .swiper-slide .button:not(.primary):not(.button-w-icon),
  .modular .fullwidth_background .button:not(.primary):not(.button-w-icon) {
    box-shadow: none !important;
    text-shadow: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    border-color: rgba(255, 255, 255, 0.35); }
    .modular .section_bg-darkgrey .button:not(.primary):not(.button-w-icon):hover, .modular .section_bg-darkgrey .button:not(.primary):not(.button-w-icon):active,
    .modular .showcase .button:not(.primary):not(.button-w-icon):hover,
    .modular .showcase .button:not(.primary):not(.button-w-icon):active,
    .modular .page-header .swiper-slide .button:not(.primary):not(.button-w-icon):hover,
    .modular .page-header .swiper-slide .button:not(.primary):not(.button-w-icon):active,
    .modular .fullwidth_background .button:not(.primary):not(.button-w-icon):hover,
    .modular .fullwidth_background .button:not(.primary):not(.button-w-icon):active {
      color: white;
      border-color: rgba(255, 255, 255, 0.75); }

.modal-footer .button,
.pricing-column-footer .button {
  border-radius: 3px;
  padding-left: 1em !important;
  padding-right: 1em !important; }

/* --- Mobile Buttons --- */
@media only all and (max-width: 47.938em) {
  button.button,
  .button {
    font-size: 14px !important;
    margin-bottom: 0.5em !important;
    min-width: 10em; }

  .button.button-small {
    font-size: 12px !important; } }
@media only all and (min-width: 75em) {
  .button-small {
    font-size: 14px !important; } }
/* --- Modals --- */
.modal-open,
#sb-site {
  overflow: hidden !important; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }
  .modal .button-group {
    margin-top: 1.6rem; }

.modal.fade .modal-dialog {
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out; }

.modal.in .modal-dialog {
  opacity: 1; }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #ffffff;
  border-radius: 3px;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000; }

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0); }

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50); }

.modal-header {
  position: relative;
  padding: 1em 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07); }

.modal-title {
  margin: 0;
  line-height: 1.42857143;
  font-weight: 300; }

.modal-body {
  position: relative;
  padding: 1.5rem;
  padding-bottom: .5rem; }
  .modal-body .button-group {
    margin-bottom: .65rem; }

.modal-footer {
  font-size: .85em;
  padding: .85rem;
  text-align: right;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(0, 0, 0, 0.05); }

.modal-footer .button + .button {
  margin-right: 0;
  margin-bottom: 0; }

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px; }

.modal-footer .btn-block + .btn-block {
  margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 620px;
    margin: 30px auto; }

  .modal-sm {
    width: 300px; } }
@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }
.clearfix:before,
.clearfix:after,
form .group--checkbox:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table; }

.clearfix:after, form .group--checkbox:after,
.modal-header:after,
.modal-footer:after {
  clear: both; }

.close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  outline: none;
  height: 100%;
  width: 3rem;
  line-height: 2rem;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0);
  color: rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 0 3px 0 0;
  border-radius: 0 3px 0 0; }
  .close:hover {
    color: #111;
    background: rgba(0, 0, 0, 0.07); }

.modal .modal-image,
.modal .modal-body-text {
  display: block; }
.modal .modal-body-text {
  font-size: inherit !important;
  margin: 0; }
  .modal .modal-body-text iframe + p {
    margin-top: 1rem; }
.modal .modal-image {
  margin-bottom: 1.5rem; }
.modal .modal-footer.align-left {
  text-align: left !important; }
  .modal .modal-footer.align-left .button[data-dismiss="modal"] {
    position: relative !important;
    left: 0 !important; }
.modal .modal-footer .button-group {
  margin: 0; }
  .modal .modal-footer .button-group .button {
    margin-bottom: 0;
    margin-right: 0; }
    .modal .modal-footer .button-group .button[data-dismiss="modal"] {
      border-color: transparent !important;
      position: absolute;
      left: .5rem;
      font-weight: 900;
      color: #aaa; }
      .modal .modal-footer .button-group .button[data-dismiss="modal"]:hover {
        color: #777; }
      .modal .modal-footer .button-group .button[data-dismiss="modal"]:after {
        display: none; }

/* --- Iframe Video Wrapper 16:9 --- */
.iframe-wrapper-16-9 {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
  max-width: 1920px;
  max-height: 1080px;
  margin-bottom: 1rem; }
  .iframe-wrapper-16-9 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    max-width: 100%;
    background: none !important; }

table {
  text-align: left;
  border: none; }
  table tr, table td, table th {
    vertical-align: top; }
  table tr {
    border: none; }

html, body {
  height: 100%; }

body {
  color: #444;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  padding: 0 !important; }

a {
  text-decoration: underline;
  cursor: pointer;
  color: #111; }

b, strong, label {
  font-weight: 700; }

#container {
  min-height: 100%;
  position: relative; }

.fullwidth #body {
  padding-left: 0;
  padding-right: 0; }

.content-width {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; }
  @media only all and (max-width: 47.938em) {
    .content-width {
      padding-left: 1.5rem;
      padding-right: 1.5rem; } }

#body {
  padding-top: 4.7rem;
  padding-bottom: 2rem; }

.modular #body {
  padding-top: 10em; }

#sb-site {
  z-index: initial !important;
  min-height: 0 !important; }

.modular #body {
  padding-top: 5.2rem;
  padding-bottom: 0; }

.left {
  float: left; }

.right {
  float: right; }

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

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

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

.noselect, .button, .button-secondary, #header a, .sb-slidebar, .table-header .sort,
.page-list-header .sort, .modular .showcase, .anything-slider-section, .fullwidth_background .col_text, .calculator #calculator-container .toggle *, .calculator #calculator-container .slide-range-container .scale, .showcase-swiper.page-header .swiper-slide, .logo-swiper-modular, .plugin-swiper-modular {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/* --- General Transition --- */
.generalTransition, .button, .button-secondary, .button i.fa, .button-custom-bg,
.button-w-icon, .button-custom-bg:before,
.button-w-icon:before, .close, .sb-slidebar a, #breadcrumbs-container #breadcrumbs i, #header--meta a, .vm-button, .table-header .table-header-item,
.table-header .page-list-header-item,
.page-list-header .table-header-item,
.page-list-header .page-list-header-item, .table-header .sort:after,
.page-list-header .sort:after, .navigation li a, .navigation li a.nav-page-item .nav-page-title:after, .navigation li a.nav-page-edit, form i.fa,
form #search-submit,
form #show-password, select, .modular .features .feature i.fa, .anything-slider-section .arrow, .gallery-small .plugin--thumbnail, .accordion .collapse, .accordion .panel .panel-heading .panel-title a, .pricing-table .pricing-column, .calculator #calculator-container #calculator-screens i.fa, .calculator #calculator-container #calculator-screens-number, .calculator #calculator-container .toggle label, .calculator #calculator-container .toggle label:after, .special .special-row .special-image .special--message, .special .special-row .special-image img, .special .special-row .special-image:before, .imagefader .fader .fader-item .fader-item-body, .testimonial-slider .testimonial--image,
.testimonial-slider .testimonial--image img {
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out; }

/* --- Gradients --- */
.gradient-black-transp-down, .modular .showcase:before, .showcase-swiper.page-header .swiper-slide:before {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#66000000',GradientType=0 ); }

.gradient-black-transp-up, .modular .showcase:after, .showcase-swiper.page-header .swiper-slide:after {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99000000', endColorstr='#00000000',GradientType=0 ); }

/*
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900');
*/
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Lato-Light.eot");
  src: local("Lato Light"), local("Lato-Light"), url("../fonts/Lato-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Light.woff2") format("woff2"), url("../fonts/Lato-Light.woff") format("woff"), url("../fonts/Lato-Light.ttf") format("truetype"), url("../fonts/Lato-Light.svg#Lato") format("svg"); }
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Lato-Regular.eot");
  src: local("Lato Regular"), local("Lato-Regular"), url("../fonts/Lato-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Regular.woff2") format("woff2"), url("../fonts/Lato-Regular.woff") format("woff"), url("../fonts/Lato-Regular.ttf") format("truetype"), url("../fonts/Lato-Regular.svg#Lato") format("svg"); }
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Lato-Bold.eot");
  src: local("Lato Bold"), local("Lato-Bold"), url("../fonts/Lato-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Bold.woff2") format("woff2"), url("../fonts/Lato-Bold.woff") format("woff"), url("../fonts/Lato-Bold.ttf") format("truetype"), url("../fonts/Lato-Bold.svg#Lato") format("svg"); }
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/Lato-Black.eot");
  src: local("Lato Black"), local("Lato-Black"), url("../fonts/Lato-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Black.woff2") format("woff2"), url("../fonts/Lato-Black.woff") format("woff"), url("../fonts/Lato-Black.ttf") format("truetype"), url("../fonts/Lato-Black.svg#Lato") format("svg"); }
.default-animation {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease; }

.padding-horiz, .fullwidth #header,
.fullwidth #breadcrumbs,
.fullwidth .blog-header,
.fullwidth .blog-content-item,
.fullwidth .content-wrapper,
.fullwidth ul.pagination,
.fullwidth .swiper-slide,
.fullwidth #body > .modular-row, #body, #header #header--main, #footer .row {
  padding-left: 3rem;
  padding-right: 3rem; }
  @media only all and (max-width: 59.938em) {
    .padding-horiz, .fullwidth #header,
    .fullwidth #breadcrumbs,
    .fullwidth .blog-header,
    .fullwidth .blog-content-item,
    .fullwidth .content-wrapper,
    .fullwidth ul.pagination,
    .fullwidth .swiper-slide,
    .fullwidth #body > .modular-row, #body, #header #header--main, #footer .row {
      padding-left: 0rem;
      padding-right: 0rem; } }
  @media only all and (max-width: 47.938em) {
    .padding-horiz, .fullwidth #header,
    .fullwidth #breadcrumbs,
    .fullwidth .blog-header,
    .fullwidth .blog-content-item,
    .fullwidth .content-wrapper,
    .fullwidth ul.pagination,
    .fullwidth .swiper-slide,
    .fullwidth #body > .modular-row, #body, #header #header--main, #footer .row {
      padding-left: -3rem;
      padding-right: -3rem; } }

.padding-vert {
  padding-top: 3rem;
  padding-bottom: 3rem; }

#header {
  position: fixed;
  z-index: 30;
  width: 100%;
  padding: 0 !important; }
  #header a {
    text-decoration: none; }
  #header #header--main {
    width: 100%; }
  #header #header--main {
    padding-top: 1em;
    padding-bottom: 1em;
    position: relative;
    z-index: 50; }
  #header #logo {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    padding: 0;
    position: relative; }
    #header #logo a {
      display: block;
      height: 100%;
      width: 100%;
      cursor: pointer;
      padding: 0;
      color: #444;
      font-weight: 300;
      font-size: 1.4rem; }
      #header #logo a img {
        display: inline-block;
        width: auto;
        height: 1.2rem;
        position: relative;
        top: 1px; }

html, body, button, input, select, textarea, .pure-g, .pure-g [class*="pure-u"] {
  font-family: "Lato", "Open Sans", "Helvetica", "Arial", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5; }

b, strong, label {
  font-weight: bold;
  font-weight: 700; }

#body ul li,
#body ol li {
  margin-bottom: .5em; }
#body p {
  margin-top: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", "Open Sans", "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  text-rendering: optimizeLegibility;
  letter-spacing: -0px;
  line-height: 1.2;
  margin-top: 0; }

h1, h2 {
  font-size: 2.8rem; }

h2 {
  font-weight: 300;
  letter-spacing: -0.02em; }

@media only all and (min-width: 48em) and (max-width: 59.938em) {
  h3 {
    font-size: 1.6rem; } }
@media only all and (max-width: 47.938em) {
  h3 {
    font-size: 1.4rem; } }

h4 {
  font-size: 1.35rem;
  font-weight: 300; }

h1 + h2 {
  margin: -1.7rem 0 1.7rem 0;
  font-family: "Lato", "Open Sans", "Helvetica", "Arial", sans-serif;
  font-weight: 300; }

h2 + h3 {
  margin: 0.5rem 0 2rem 0;
  font-size: 2rem;
  text-align: center;
  font-family: "Lato", "Open Sans", "Helvetica", "Arial", sans-serif;
  font-weight: 300; }
  @media only all and (min-width: 48em) and (max-width: 59.938em) {
    h2 + h3 {
      font-size: 1.6rem; } }
  @media only all and (max-width: 47.938em) {
    h2 + h3 {
      font-size: 1.5rem; } }

h3 + h3 {
  font-weight: 300;
  margin-top: -1.4rem !important; }

h4 + h4 {
  font-weight: 300; }

blockquote {
  padding-left: 0; }
  blockquote p {
    font-weight: 700;
    font-size: 1.1rem; }
  blockquote cite {
    display: block;
    text-align: right;
    font-size: 1.2rem; }

blockquote > blockquote > blockquote {
  margin: 0; }
  blockquote > blockquote > blockquote p {
    padding: 15px;
    display: block;
    font-size: 1rem;
    margin-top: 0rem;
    margin-bottom: 0rem; }
  blockquote > blockquote > blockquote > p {
    margin-left: -71px;
    border-left: 10px solid #F0AD4E;
    background: #FCF8F2; }
  blockquote > blockquote > blockquote > blockquote > p {
    margin-left: -94px;
    border-left: 10px solid #D9534F;
    background: #FDF7F7;
    color: #b52b27; }
    blockquote > blockquote > blockquote > blockquote > p a {
      color: #8b211e; }
      blockquote > blockquote > blockquote > blockquote > p a:hover {
        color: #de6764; }
  blockquote > blockquote > blockquote > blockquote > blockquote > p {
    margin-left: -118px;
    border-left: 10px solid #5BC0DE;
    background: #F4F8FA;
    color: #28a1c5; }
    blockquote > blockquote > blockquote > blockquote > blockquote > p a {
      color: #1f7e9a; }
      blockquote > blockquote > blockquote > blockquote > blockquote > p a:hover {
        color: #70c8e2; }
  blockquote > blockquote > blockquote > blockquote > blockquote > blockquote > p {
    margin-left: -142px;
    border-left: 10px solid #5CB85C;
    background: #F1F9F1;
    color: #3d8b3d; }
    blockquote > blockquote > blockquote > blockquote > blockquote > blockquote > p a {
      color: #2d672d; }
      blockquote > blockquote > blockquote > blockquote > blockquote > blockquote > p a:hover {
        color: #6ec06e; }

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

code {
  background: #f9f2f4;
  color: #9c1d3d; }

pre {
  padding: 2rem;
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 3px; }
  pre code {
    color: #237794;
    background: inherit; }

hr {
  border-bottom: 4px solid #F0F2F4; }

.page-title {
  margin-top: -25px;
  padding: 25px;
  float: left;
  clear: both;
  background: #fdc516;
  color: #fff; }

.label {
  vertical-align: middle;
  background: #fdc516;
  border-radius: 100%;
  color: #fff;
  height: 1rem;
  min-width: 1rem;
  line-height: 1rem;
  display: inline-block;
  text-align: center;
  font-size: 0.7rem;
  font-family: "Lato", "Open Sans", "Helvetica", "Arial", sans-serif;
  margin-right: 0.75rem; }

textarea, input[type="email"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="url"], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="time"], input[type="week"], select[multiple=multiple] {
  background-color: white;
  border: 1px solid #ddd;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06); }
  textarea:hover, input[type="email"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="url"]:hover, input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="month"]:hover, input[type="time"]:hover, input[type="week"]:hover, select[multiple=multiple]:hover {
    border-color: #c4c4c4; }
  textarea:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="url"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, select[multiple=multiple]:focus {
    border-color: #fdc516;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(247, 188, 2, 0.7); }

.form-field .required {
  color: #F3443F;
  font-size: 3rem;
  line-height: 3rem;
  vertical-align: top;
  height: 1.5rem;
  display: inline-block; }

form .buttons {
  text-align: center; }
form input {
  font-weight: 400; }

table {
  table-layout: auto;
  margin-bottom: 1.7rem; }

.bullets {
  margin: 1.7rem 0;
  margin-left: -0.85rem;
  margin-right: -0.85rem;
  overflow: auto; }

.bullet {
  float: left;
  padding: 0 0.85rem; }

.two-column-bullet {
  width: 50%; }
  @media only all and (max-width: 47.938em) {
    .two-column-bullet {
      width: 100%; } }

.three-column-bullet {
  width: 33.3333333333%; }
  @media only all and (max-width: 47.938em) {
    .three-column-bullet {
      width: 100%; } }

.four-column-bullet {
  width: 25%; }
  @media only all and (max-width: 47.938em) {
    .four-column-bullet {
      width: 100%; } }

.bullet-icon {
  float: left;
  background: #fdc516;
  padding: 0.875rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  color: #fff;
  font-size: 1.75rem;
  text-align: center; }

.bullet-icon-1 {
  background: #fdc516; }

.bullet-icon-2 {
  background: #fd7816; }

.bullet-icon-3 {
  background: #9f16fd; }

.bullet-content {
  margin-left: 4.55rem; }

/* --- Slidebar --- */
.sb-slidebar {
  display: block !important;
  left: -100% !important; }
  .sb-slidebar.sb-active {
    left: 0 !important; }

.sb-slidebar {
  background: #111 !important; }
  .sb-slidebar a {
    color: #999;
    text-decoration: none; }
    .sb-slidebar a:hover {
      color: #FFF; }

#panel {
  color: #999; }
  #panel .navigation {
    list-style: none;
    padding: 0;
    margin: 0 !important; }
    #panel .navigation li {
      border-bottom: 1px solid #262626; }
      #panel .navigation li a {
        display: block;
        padding: 0.5rem 1rem;
        font-weight: 300;
        background: #1c1c1c; }
        #panel .navigation li a:hover {
          color: #FFF; }
      #panel .navigation li.active > a {
        color: #fdc516;
        font-weight: 700; }
        #panel .navigation li.active > a:hover {
          color: #fdc516;
          font-weight: 700; }
      #panel .navigation li.has-children > ul {
        display: none; }
      #panel .navigation li.has-children.active > ul {
        display: block !important; }
        #panel .navigation li.has-children.active > ul a {
          font-weight: inherit; }
      #panel .navigation li ul {
        list-style: none;
        padding: 0; }
        #panel .navigation li ul li {
          border: 0 !important; }
          #panel .navigation li ul li a {
            color: gray;
            padding: 0.2rem 1rem;
            font-size: 16px;
            font-weight: 400 !important; }
          #panel .navigation li ul li:last-child > a {
            padding-bottom: 1rem; }
          #panel .navigation li ul li li a {
            padding-left: 1.6rem;
            font-size: 14px !important;
            line-height: 1.3em !important; }
            #panel .navigation li ul li li a li a {
              padding-left: 3rem; }
    #panel .navigation > li.has-children > ul > li:first-child > a {
      padding-top: 0; }
  #panel .meta-navigation {
    display: block;
    width: 100%;
    padding: .85rem 0 1rem 0;
    font-size: 14px;
    background: #111; }
    #panel .meta-navigation ul {
      padding: 0; }
      #panel .meta-navigation ul li {
        border-bottom: none; }
        #panel .meta-navigation ul li.active {
          border-left: none !important; }
        #panel .meta-navigation ul li:nth-child(1), #panel .meta-navigation ul li:nth-child(2) {
          display: inline; }
        #panel .meta-navigation ul li:nth-child(1) a {
          margin-left: 1rem;
          margin-right: 4px; }
        #panel .meta-navigation ul li a {
          font-weight: 400;
          padding-top: .35em;
          padding-bottom: .35em;
          background: none; }
          #panel .meta-navigation ul li a.highlight, #panel .meta-navigation ul li a.ghost {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: .05em;
            line-height: 1.4em;
            display: inline-block;
            border-radius: 2px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            padding-left: .65em;
            padding-right: .65em;
            margin-bottom: .5em; }
          #panel .meta-navigation ul li a.highlight {
            background: -moz-linear-gradient(top, #fed450 0%, #fdc618 100%);
            background: -webkit-linear-gradient(top, #fed450 0%, #fdc618 100%);
            background: linear-gradient(to bottom, #fed450 0%, #fdc618 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fed450', endColorstr='#fdc618',GradientType=0 );
            border-color: #fdc516;
            color: #111;
            text-shadow: 0 0.05em 0 rgba(255, 255, 255, 0.5);
            border-bottom-color: #fcae0c; }
          #panel .meta-navigation ul li a.ghost {
            border-color: rgba(255, 255, 255, 0.25); }
            #panel .meta-navigation ul li a.ghost:hover {
              border-color: rgba(255, 255, 255, 0.5); }

.blog-header {
  padding-top: 2rem;
  padding-bottom: 2rem; }
  .blog-header.blog-header-image {
    background-size: cover;
    background-position: center; }
    .blog-header.blog-header-image h1, .blog-header.blog-header-image h2 {
      color: #FFFFFF; }
  .blog-header h1 {
    font-size: 4rem;
    margin-top: 0; }
    @media only all and (min-width: 48em) and (max-width: 59.938em) {
      .blog-header h1 {
        font-size: 3rem; } }
    @media only all and (max-width: 47.938em) {
      .blog-header h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 2.5rem; } }
  .blog-header + .blog-content {
    padding-top: 3rem; }

.list-item {
  border-bottom: 1px solid #EEEEEE;
  margin-bottom: 3rem; }
  .list-item:last-child {
    border-bottom: 0; }
  .list-item .list-blog-header {
    position: relative; }
    .list-item .list-blog-header h4 {
      margin-bottom: 0.5rem; }
      .list-item .list-blog-header h4 a {
        color: #444; }
        .list-item .list-blog-header h4 a:hover {
          color: #fdc516; }
    .list-item .list-blog-header img {
      display: block;
      margin-top: 1rem;
      border-radius: 3px; }
  .list-item .list-blog-date {
    float: right;
    text-align: center; }
    .list-item .list-blog-date span {
      display: block;
      font-size: 1.75rem;
      font-weight: 700;
      line-height: 110%; }
    .list-item .list-blog-date em {
      display: block;
      border-top: 1px solid #EEEEEE;
      font-style: normal;
      text-transform: uppercase; }

.blog-content-item .list-blog-padding > p:nth-child(2) {
  font-size: 1.2rem; }

.tags a {
  display: inline-block;
  font-size: 0.8rem;
  border: 1px solid #fdc516;
  border-radius: 3px;
  padding: 0.1rem 0.4rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase; }

.archives, .related-pages {
  padding: 0;
  list-style: none; }
  .archives li, .related-pages li {
    border-bottom: 1px solid #EEEEEE;
    line-height: 2rem; }
    .archives li:last-child, .related-pages li:last-child {
      border-bottom: 0; }

.related-pages li a {
  display: block; }
.related-pages .score {
  display: block;
  float: right;
  color: #999;
  font-size: 85%; }

.syndicate a {
  margin-bottom: 1rem; }

div#breadcrumbs {
  padding-left: 0; }
  @media only all and (max-width: 47.938em) {
    div#breadcrumbs {
      display: none; } }

#sidebar {
  padding-left: 3rem; }
  @media only all and (max-width: 47.938em) {
    #sidebar {
      padding-left: 0; } }
  #sidebar .sidebar-content {
    margin-bottom: 3rem; }
    #sidebar .sidebar-content h4 {
      margin-bottom: 1rem; }
    #sidebar .sidebar-content p, #sidebar .sidebar-content ul {
      margin-top: 1rem; }

ul.pagination {
  margin: 0 0 3rem;
  text-align: center; }

.prev-next {
  margin-top: 5rem;
  text-align: center; }

#error {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-bottom: 6rem; }
  #error h1 {
    font-size: 5rem; }
  #error p {
    margin: 1rem 0; }

#breadcrumbs-container {
  position: absolute;
  top: 4.6rem;
  z-index: 20;
  width: 100%;
  text-align: right;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out; }
  #breadcrumbs-container.scrolled {
    opacity: 0; }
  #breadcrumbs-container #breadcrumbs {
    margin: 0 -.15em 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1em;
    color: rgba(255, 255, 255, 0.5); }
    #breadcrumbs-container #breadcrumbs a, #breadcrumbs-container #breadcrumbs i {
      padding: 0.65em 0.5em !important; }
    #breadcrumbs-container #breadcrumbs i {
      padding-left: 0 !important;
      padding-right: 0 !important; }
    #breadcrumbs-container #breadcrumbs a {
      display: inline-block;
      border: none;
      color: inherit;
      text-decoration: none !important; }
      #breadcrumbs-container #breadcrumbs a:first-child {
        padding-left: 0.85em !important;
        -webkit-border-radius: 4px 0 0 4px;
        border-radius: 4px 0 0 4px; }
      #breadcrumbs-container #breadcrumbs a:hover {
        color: white; }
      #breadcrumbs-container #breadcrumbs a:last-child, #breadcrumbs-container #breadcrumbs a:last-child:hover {
        color: #fdc516; }
      #breadcrumbs-container #breadcrumbs a:last-child {
        padding-right: 0.85em !important;
        -webkit-border-radius: 0 4px 4px 0;
        border-radius: 0 4px 4px 0; }

.small-uppercase, .table-header,
.page-list-header, table thead {
  font-size: .65rem;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700; }

sub,
sup {
  font-size: .65em; }

.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden; }

#sb-site,
.sb-site-container {
  background: none !important; }

#header--meta {
  display: inline-block;
  text-align: right;
  float: right;
  padding-top: .5rem; }
  #header--meta a {
    color: rgba(0, 0, 0, 0.25); }
    #header--meta a:hover, #header--meta a.active {
      color: #111; }
    #header--meta a.active {
      text-decoration: underline; }

#header #header--main {
  background: -moz-linear-gradient(top, white 0%, white 50%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(top, white 0%, white 50%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to bottom, white 0%, white 50%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); }

/* --- Buttons --- */
.vm-button {
  display: inline-block;
  line-height: 1em;
  color: rgba(0, 0, 0, 0.25);
  padding: .5em .65em;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0);
  border-radius: 2px;
  text-decoration: none !important; }
  .vm-button i {
    padding-right: .25em; }
  .vm-button:hover, .vm-button:focus {
    color: #111;
    border-color: rgba(0, 0, 0, 0.35);
    background: rgba(0, 0, 0, 0.04); }

.link--login {
  margin-top: -.35em; }

.langswitcher {
  list-style: none;
  margin: 0 .5rem;
  padding: 0;
  display: inline-block; }
  .langswitcher li {
    display: inline-block;
    margin: 0 .5em 0 0;
    padding: 0; }

.section-title {
  font-size: 1rem;
  font-weight: 700;
  padding: 0;
  margin: 0; }

.navigation .nav-page-item,
.page-list-header,
.nav-page-edit {
  padding: .45rem .75rem; }

.nav-page-number,
.page-list-header-number {
  width: 1.5rem; }

.page-list-header-date,
.nav-page-date {
  display: inline-block; }
  @media screen and (min-width: 720px) {
    .page-list-header-date,
    .nav-page-date {
      width: 10rem; } }

.page-list-header-title,
.nav-page-title {
  width: calc(50% - 2rem); }

.page-list-header-date,
.nav-page-date {
  width: 25%; }

.page-list-header-category,
.nav-page-category {
  width: 20%; }

.page-list-header-receiver,
.nav-page-receiver {
  width: 20%; }

.page-list-header-author,
.nav-page-author {
  width: 20%;
  position: absolute;
  right: 0;
  margin-right: .75rem; }

.nav-page-category {
  max-height: 1rem; }

.tag {
  display: inline-block;
  background: #0080ff;
  border: 1px solid transparent;
  color: #FFF;
  padding: .25em .35em;
  border-radius: 2px;
  margin: 0 1px 1px 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  max-width: 8em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }
  .tag[data-category="products"] {
    background-color: #e91e63; }
  .tag[data-category="help"] {
    background-color: #00796b; }

.table-header .table-header-item,
.table-header .page-list-header-item,
.page-list-header .table-header-item,
.page-list-header .page-list-header-item {
  opacity: .25; }
  .table-header .table-header-item:hover,
  .table-header .page-list-header-item:hover,
  .page-list-header .table-header-item:hover,
  .page-list-header .page-list-header-item:hover {
    opacity: 1; }
.table-header .page-list-header-item,
.page-list-header .page-list-header-item {
  padding: .5em 0; }
.table-header .sort,
.page-list-header .sort {
  cursor: pointer; }
  .table-header .sort:after,
  .page-list-header .sort:after {
    content: '\f0d7';
    display: inline-block;
    font-family: "FontAwesome";
    font-size: 1em;
    margin-left: .2em;
    position: relative;
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }
  .table-header .sort.asc:after,
  .page-list-header .sort.asc:after {
    content: '\f0d7'; }
  .table-header .sort.desc:after,
  .page-list-header .sort.desc:after {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg); }

.page-list-header-item,
.nav-page-subitem {
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden; }

.navigation {
  list-style: none;
  margin-top: 0;
  padding: 0;
  counter-reset: page-list; }
  .navigation li {
    margin: 0 0 2px 0 !important;
    padding: 0;
    position: relative;
    font-size: .85rem; }
    .navigation li:nth-child(odd) a {
      background: rgba(0, 0, 0, 0.07); }
    .navigation li.mandatory a.nav-page-item {
      font-weight: bold; }
    .navigation li a {
      text-decoration: none; }
      .navigation li a.nav-page-item {
        display: block;
        line-height: 1.2em;
        color: rgba(0, 0, 0, 0.5) !important;
        overflow: hidden;
        border-radius: 3px; }
        .navigation li a.nav-page-item:hover {
          color: rgba(0, 0, 0, 0.85) !important; }
          .navigation li a.nav-page-item:hover .nav-page-title:after {
            opacity: 1; }
        .navigation li a.nav-page-item .nav-page-number {
          display: inline-block; }
        .navigation li a.nav-page-item .nav-page-number,
        .navigation li a.nav-page-item .nav-page-title,
        .navigation li a.nav-page-item .nav-page-date,
        .navigation li a.nav-page-item .nav-page-edit,
        .navigation li a.nav-page-item .nav-page-author {
          text-decoration: none; }
        .navigation li a.nav-page-item .nav-page-title:after {
          content: '\f06e';
          display: inline-block;
          font-family: "FontAwesome";
          padding-left: .35em;
          opacity: 0; }
        .navigation li a.nav-page-item .nav-page-date .nav-page-time {
          display: inline; }
      .navigation li a.nav-page-edit {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 10;
        color: inherit;
        -webkit-border-radius: 0 3px 3px 0;
        border-radius: 0 3px 3px 0;
        opacity: 0;
        background: rgba(0, 0, 0, 0); }
        .navigation li a.nav-page-edit:active, .navigation li a.nav-page-edit:focus, .navigation li a.nav-page-edit:hover {
          opacity: 1;
          background: rgba(0, 0, 0, 0.04); }
    .navigation li:hover .nav-page-edit {
      opacity: 1; }
    .navigation li a {
      background: rgba(0, 0, 0, 0.04); }

@media screen and (max-width: 719px) {
  #header--meta {
    display: inline-block;
    text-align: left;
    float: none; }
    #header--meta ul {
      margin-left: 0;
      margin-right: 0; }

  #logo,
  .nav-page-date-time {
    display: none !important; }

  .link--login {
    position: absolute;
    right: 1.5rem; }

  h1, h2 {
    font-size: 2.2rem; }

  .navigation li {
    margin: 0 0 6px 0 !important; } }
#footer {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 1.5rem; }
  #footer #footer-credits {
    padding: 1.5rem 0;
    font-size: .85rem; }

.grav-lightslider .lSSlideOuter .lSPager.lSpg > li a {
  z-index: 1; }

#body > script:first-child + .grav-lightslider {
  margin-top: -3rem; }

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

::-moz-selection {
  background: rgba(253, 197, 22, 0.5); }

::selection {
  background: rgba(253, 197, 22, 0.5); }

.row {
  margin-left: 0;
  margin-right: 0; }

.row:after {
  content: " ";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px; }

/* --- Forms --- */
/* --- Form Messages --- */
.form-message {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 1.7rem;
  max-width: 480px;
  border: 3px solid transparent;
  border-radius: 3px; }

.message-error {
  background: rgba(237, 30, 51, 0.25);
  border-color: rgba(237, 30, 51, 0.15);
  padding: .65em; }
  .message-error p {
    margin: 0; }

/* --- Submit --- */
form {
  text-align: left; }
  form button.button {
    margin-top: 1rem; }

/* --- Form Input Style --- */
textarea,
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="time"],
input[type="week"],
select[multiple=multiple] {
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 700 !important;
  border-radius: 0 !important; }

.group {
  position: relative;
  margin-bottom: 1.5rem; }
  .group input {
    font-size: 1rem;
    padding: 0.5rem 0.65rem !important;
    display: block;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07) !important; }
  .group label {
    color: #999;
    font-size: 1rem;
    font-weight: 300;
    position: absolute !important;
    pointer-events: none;
    left: .65rem;
    top: .65rem;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all; }
  .group input:focus ~ label,
  .group input:valid ~ label {
    top: -.85rem;
    font-size: 14px;
    color: #111; }
  .group input:-webkit-autofill ~ label,
  .group input:-webkit-autofill:hover ~ label,
  .group input:-webkit-autofill:focus ~ label,
  .group input:-webkit-autofill ~ label,
  .group textarea:-webkit-autofill ~ label,
  .group textarea:-webkit-autofill:hover ~ label,
  .group textarea:-webkit-autofill:focus ~ label,
  .group select:-webkit-autofill ~ label,
  .group select:-webkit-autofill:hover ~ label,
  .group select:-webkit-autofill:focus ~ label {
    top: -.85rem;
    font-size: 14px;
    color: #111; }
  .group .bar {
    position: relative;
    display: block; }
  .group .bar:before,
  .group .bar:after {
    content: '';
    height: 1px;
    width: 0;
    bottom: 0;
    position: absolute;
    background: #fdc516;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all; }
  .group .bar:before {
    left: 50%; }
  .group .bar:after {
    right: 50%; }
  .group input:focus ~ .bar:before,
  .group input:focus ~ .bar:after {
    width: 50%; }
  .group .highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5; }
  .group input:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease; }
@-webkit-keyframes inputHighlighter {
  from {
    width: 0;
    background: #fdc516; }
  to {
    width: 0;
    background: transparent; } }
@-moz-keyframes inputHighlighter {
  from {
    width: 0;
    background: #fdc516; }
  to {
    width: 0;
    background: transparent; } }
@keyframes inputHighlighter {
  from {
    width: 0;
    background: #fdc516; }
  to {
    width: 0;
    background: transparent; } }
/* --- Checkboxes --- */
form {
  margin-bottom: 1.7rem; }
  form i.fa,
  form #search-submit,
  form #show-password {
    position: absolute;
    right: 0;
    top: 0;
    padding: .85rem;
    color: #999;
    cursor: pointer; }
    form i.fa:hover,
    form #search-submit:hover,
    form #show-password:hover {
      color: #111; }
  form .group--checkbox {
    margin: 0 0 1.7rem 0;
    padding: 0 .65rem; }
    form .group--checkbox input[type="checkbox"] {
      display: inline-block;
      float: left; }
    form .group--checkbox label.label--default {
      font-size: 14px;
      font-weight: 300;
      display: block;
      width: calc(100% - 1.5rem);
      float: right;
      padding: 0;
      margin: 0;
      position: relative;
      top: -.2em; }
  form .group--checkbox + .group--checkbox {
    margin-top: -1rem; }

select:required ~ label:after,
input:required ~ label:after {
  content: '*';
  font-size: 1rem;
  font-weight: 400;
  color: #ed1e33; }

.social-accounts {
  text-align: center; }
  .social-accounts .sep-vertical {
    display: table;
    width: 100%;
    margin-bottom: 1.7rem;
    vertical-align: middle; }
    .social-accounts .sep-vertical h4 {
      font-size: 1rem;
      margin: 0;
      padding: 0;
      font-weight: 300;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      position: relative;
      display: table-cell;
      width: 60%; }
    .social-accounts .sep-vertical hr {
      display: table-cell;
      border-bottom: 1px solid rgba(0, 0, 0, 0.07);
      width: 20%;
      height: 1px;
      vertical-align: middle;
      -moz-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
  .social-accounts .button {
    width: 45%;
    display: inline-block;
    margin-left: 2.5%;
    margin-right: 2.5%; }
    @media only all and (max-width: 47.938em) {
      .social-accounts .button {
        display: block;
        width: 100%;
        margin-left: 0;
        margin-right: 0; } }

.form-footer-links a {
  display: inline-block;
  margin: .5em; }

/* --- Resets --- */
input:focus,
*:focus {
  outline: none; }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none !important;
  -webkit-text-fill-color: #999;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s; }

/* --- Form Select --- */
.form-select select:valid ~ label,
.form-select select:focus ~ label {
  top: -.85rem;
  font-size: 14px;
  color: #111; }

select {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07) !important;
  border-radius: none !important;
  border-radius: 0 !important;
  font-size: 1rem;
  font-weight: 700;
  color: #999;
  padding: 0.5rem 0.65rem !important;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }
  select:hover, select:focus, select:hover ~ i, select:focus ~ i {
    color: #111 !important; }

/* --- */
table, tr, td {
  position: relative;
  border: none; }

table tr {
  background: none; }
  table tr td {
    padding: .45rem .5rem;
    border-bottom: 2px solid transparent; }
table thead tr {
  background: none !important; }
  table thead tr td {
    padding-bottom: .85rem; }
table tbody {
  font-size: .85rem;
  line-height: 1.3em; }
  table tbody tr:nth-child(odd) td {
    background: rgba(0, 0, 0, 0.07); }
  table tbody tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.04); }
  table tbody td:first-child {
    border-radius: 6px 0 0 6px; }
  table tbody td:last-child {
    border-radius: 0 6px 6px 0; }
table a {
  text-decoration: none;
  color: inherit; }

.section-padding-vertical, .empty, .cards, .modular .features, .callout, .testimonials, .gallery-small, .fullwidth_background, .columns, .google-maps .col_text, .calculator, .special, .contact-form, .modular-row.content-swiper, .testimonial-slider {
  padding-top: 6.7rem;
  padding-bottom: 4.7rem; }
  @media only all and (max-width: 47.938em) {
    .section-padding-vertical, .empty, .cards, .modular .features, .callout, .testimonials, .gallery-small, .fullwidth_background, .columns, .google-maps .col_text, .calculator, .special, .contact-form, .modular-row.content-swiper, .testimonial-slider {
      padding-top: 4.7rem;
      padding-bottom: 2.7rem; } }

.section-padding-vertical-mobile, .register {
  padding-top: 4.7rem;
  padding-bottom: 2.7rem; }

/* --- Helpers --- */
.hidden {
  display: none; }

/* --- Gradients --- */
.gradient-white {
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#40ffffff',GradientType=0 ); }

.gradient-white-diagonal, .button:after, .button-secondary:after {
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 63%, rgba(255, 255, 255, 0.25) 78%, rgba(255, 255, 255, 0) 94%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 63%, rgba(255, 255, 255, 0.25) 78%, rgba(255, 255, 255, 0) 94%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 63%, rgba(255, 255, 255, 0.25) 78%, rgba(255, 255, 255, 0) 94%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 ); }

/* --- Section Options --- */
.modular-row {
  border-top: 1px solid rgba(0, 0, 0, 0.05); }

.section_bg-white {
  background-color: #FFF; }

.section_bg-lightgrey {
  background-color: #f6f6f6; }

.section_bg-grey {
  background-color: #eee; }

.section_bg-darkgrey {
  background-color: #333;
  color: #AAA; }
  .section_bg-darkgrey h3 {
    color: #fdc516; }
  .section_bg-darkgrey p a {
    color: #FFF !important;
    border-bottom-color: #FFF !important; }
    .section_bg-darkgrey p a:hover {
      color: #fdc516 !important;
      border-bottom-color: #fdc516 !important; }
  .section_bg-darkgrey h3 + h3,
  .section_bg-darkgrey input:focus ~ label,
  .section_bg-darkgrey input:valid ~ label {
    color: #FFF !important; }
  .section_bg-darkgrey [type="checkbox"]:not(:checked) + label:before,
  .section_bg-darkgrey [type="checkbox"]:checked + label:before {
    border: 1px solid rgba(0, 0, 0, 0.35) !important; }

.section_bg-yellow {
  background-color: #fdc516; }
  .section_bg-yellow strong, .section_bg-yellow label {
    letter-spacing: -.02em;
    color: #FFF; }

/* --- Alignment --- */
.layout-center .grid {
  display: block;
  text-align: center; }
  .layout-center .grid .col_text,
  .layout-center .grid .col_image {
    width: 100%; }
    .layout-center .grid .col_text img,
    .layout-center .grid .col_image img {
      margin-bottom: 1rem; }

.layout-left .grid,
.layout-left .row {
  text-align: left; }
  .layout-left .grid .col_text,
  .layout-left .grid .col:first-child,
  .layout-left .row .col_text,
  .layout-left .row .col:first-child {
    padding-right: 1.4rem; }
  .layout-left .grid .col_image,
  .layout-left .grid .col:nth-child(2),
  .layout-left .row .col_image,
  .layout-left .row .col:nth-child(2) {
    padding-left: 1.4rem; }
@media only all and (max-width: 47.938em) {
  .layout-left .grid,
  .layout-left .row {
    text-align: center; }
    .layout-left .grid .col,
    .layout-left .grid .col_text,
    .layout-left .grid .col_image,
    .layout-left .row .col,
    .layout-left .row .col_text,
    .layout-left .row .col_image {
      padding-left: 0 !important;
      padding-right: 0 !important; } }

.layout-right .grid {
  flex-direction: row-reverse !important;
  text-align: left; }
  .layout-right .grid .col_text {
    padding-left: 1.4rem; }
  .layout-right .grid .col_image {
    padding-right: 1.4rem; }
@media only all and (max-width: 47.938em) {
  .layout-right .grid {
    text-align: center; }
    .layout-right .grid .col_text,
    .layout-right .grid .col_image {
      padding-left: 0 !important;
      padding-right: 0 !important; } }

/* --- Custom Options --- */
.padding-bottom-2 {
  padding-bottom: 2rem !important; }

.padding-bottom-1 {
  padding-bottom: 1rem !important; }

.padding-bottom-0 {
  padding-bottom: 0 !important; }

.padding-top-0 {
  padding-top: 0 !important; }

.padding-top-1 {
  padding-top: 1rem !important; }

.padding-top-2 {
  padding-top: 2rem !important; }

.border-none {
  border-top: none !important; }

.modular {
  position: relative; }
  .modular .showcase {
    border-top: none !important;
    position: relative;
    background-position: 50% 50%;
    overflow: hidden; }
  .modular .showcase:after {
    content: ' ';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: +1; }
  .modular .showcase:before {
    content: ' ';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: +2; }
  .modular .showcase {
    padding-top: 8rem;
    padding-bottom: 2rem;
    background-color: #222;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #FFFFFF; }
    .modular .showcase form input {
      color: #444 !important; }
    .modular .showcase * {
      position: relative;
      z-index: +2; }
    .modular .showcase .showcase-bg-container,
    .modular .showcase .showcase-bg {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
      height: 100%;
      width: 100%;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center; }
@-webkit-keyframes showcase-intro {
  0% {
    transform: scale(1.2);
    opacity: 0; }
  100% {
    transform: scale(1);
    opacity: 1; } }
@keyframes showcase-intro {
  0% {
    transform: scale(1.2);
    opacity: 0; }
  100% {
    transform: scale(1);
    opacity: 1; } }
    .modular .showcase .showcase-intro {
      transform-origin: center center;
      -webkit-animation-name: showcase-intro;
      animation-name: showcase-intro;
      -webkit-animation-fill-mode: both;
      animation-fill-mode: both;
      -webkit-animation-timing-function: ease-in-out;
      animation-timing-function: ease-in-out;
      -webkit-animation-delay: .5s;
      animation-duration: .5s;
      -webkit-animation-duration: 4s;
      animation-duration: 4s; }
    .modular .showcase h1,
    .modular .showcase h2 {
      margin: 0;
      font-size: 2.8rem;
      padding: 0; }
      @media only all and (min-width: 48em) and (max-width: 59.938em) {
        .modular .showcase h1,
        .modular .showcase h2 {
          font-size: 2.6rem; } }
      @media only all and (max-width: 47.938em) {
        .modular .showcase h1,
        .modular .showcase h2 {
          font-size: 2rem;
          padding: 0; } }
    .modular .showcase h1 {
      color: #fdc516;
      margin-bottom: 4rem; }
    .modular .showcase h1 + h2 {
      margin-top: -4rem;
      margin-bottom: 4rem;
      letter-spacing: -0.02em; }
    .modular .showcase h1 + h3,
    .modular .showcase h1 + h4 {
      margin-top: -3rem; }
    .modular .showcase h3, .modular .showcase h4 {
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto; }
    .modular .showcase h4 {
      margin-bottom: .5em; }
    .modular .showcase h1 a, .modular .showcase h2 a, .modular .showcase h3 a, .modular .showcase h4 a, .modular .showcase h5 a, .modular .showcase h6 a {
      text-decoration: none;
      color: #FFFFFF !important;
      border-bottom: 1px dotted #FFFFFF !important; }
      .modular .showcase h1 a:hover, .modular .showcase h2 a:hover, .modular .showcase h3 a:hover, .modular .showcase h4 a:hover, .modular .showcase h5 a:hover, .modular .showcase h6 a:hover {
        color: #fdc516 !important;
        border-bottom-color: #fdc516 !important; }
  .modular .nbtns {
    padding-top: 9rem !important;
    padding-bottom: 3.65rem !important; }

@media only all and (max-width: 47.938em) {
  .showcase h1 + h2 {
    margin-top: -4rem;
    margin-bottom: 2rem !important; }
  .showcase.nbtns {
    padding-top: 6rem !important; } }
@media screen and (max-width: 600px) {
  .showcase {
    padding-top: 5rem !important; }
    .showcase h1, .showcase h2, .showcase h3, .showcase h4, .showcase p {
      font-size: 5vw !important; }

  .showcase:not(.login) .button {
    font-size: 2.2vw !important; } }
.cards {
  /*
  padding-top: 4rem;
  padding-bottom: 4rem;
  */ }
  @media only all and (max-width: 59.938em) {
    .cards {
      text-align: center; } }
  .cards .button-group {
    margin-top: 1.7rem; }
  .cards img {
    height: auto; }
  .cards .content-width {
    position: relative;
    z-index: 2; }
  .cards .card-container {
    vertical-align: middle;
    text-align: center; }
    .cards .card-container .card-item {
      display: inline-block;
      position: relative;
      padding: 1%;
      margin: 0 auto;
      width: 50%;
      max-width: 300px; }
      @media only all and (max-width: 47.938em) {
        .cards .card-container .card-item {
          width: 100% !important; } }
      @media only all and (min-width: 48em) and (max-width: 59.938em) {
        .cards .card-container .card-item {
          width: 50% !important; } }
      @media only all and (min-width: 75em) {
        .cards .card-container .card-item {
          width: 33.33%; } }
    .cards .card-container.item-size-1-2 .card-item {
      width: 50%; }
    .cards .card-container.item-size-1-3 .card-item {
      width: 33.33%; }
    .cards .card-container.item-size-1-4 .card-item {
      width: 25%; }
    .cards .card-container.item-size-1-5 .card-item {
      width: 20%; }
    .cards .card-container.item-size-1-6 .card-item {
      width: 12.5%; }
    .cards .card-container .card {
      outline: none !important;
      display: block;
      height: 100%;
      width: 100%;
      position: relative;
      overflow: hidden;
      margin: 0 auto;
      background: #FFF;
      border-radius: 3px;
      border: none !important;
      -webkit-transition: all 250ms;
      -moz-transition: all 250ms;
      transition: all 250ms;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
      .cards .card-container .card .card-body {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: #FFF;
        padding: .85em 1em;
        color: #111;
        width: 100%;
        height: 3rem;
        -webkit-transition: height 0.3s;
        -moz-transition: height 0.3s;
        transition: height 0.3s; }
        .cards .card-container .card .card-body .card-title {
          font-size: 1rem;
          line-height: 1.2em;
          font-weight: 300;
          position: relative;
          z-index: +1;
          margin: 0 !important;
          text-overflow: ellipsis;
          white-space: nowrap;
          overflow: hidden; }
        .cards .card-container .card .card-body .card-content {
          padding-top: .85rem;
          font-size: .8em;
          line-height: 1.3em;
          opacity: 0;
          -webkit-transition: opacity 0.2s;
          -moz-transition: opacity 0.2s;
          transition: opacity 0.2s;
          -webkit-transition-delay: 0.1s;
          -moz-transition-delay: 0.1s;
          transition-delay: 0.1s; }
        .cards .card-container .card .card-body .card-meta {
          font-size: 14px;
          text-transform: uppercase;
          letter-spacing: 0.05em; }
      .cards .card-container .card .card_footer {
        position: absolute;
        background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
        background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
        color: #a3a9ab;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0 1.5em 1.5em 1.5em;
        min-height: .5em;
        height: 54px;
        font-size: 12px;
        text-transform: uppercase; }
        .cards .card-container .card .card_footer .button-group {
          margin: 0 !important; }
        .cards .card-container .card .card_footer .button {
          border-radius: 3px;
          width: 100%;
          opacity: 0;
          margin-bottom: 0 !important; }
      .cards .card-container .card .card-thumb {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: auto;
        display: block;
        background: transparent;
        -webkit-transition: all 250ms;
        -moz-transition: all 250ms;
        transition: all 250ms; }
        .cards .card-container .card .card-thumb img {
          width: 100%;
          height: auto;
          display: block;
          -webkit-transition: all 250ms;
          -moz-transition: all 250ms;
          transition: all 250ms;
          background-color: #FFF;
          background-position: 50% 50%;
          background-repeat: no-repeat;
          background-size: contain;
          -webkit-transform: translateY(-15px);
          -moz-transform: translateY(-15px);
          -ms-transform: translateY(-15px);
          -o-transform: translateY(-15px);
          transform: translateY(-15px);
          opacity: 1; }
      .cards .card-container .card:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
        transform: translateY(-5px); }
        .cards .card-container .card:hover .card-body {
          height: 11rem; }
          .cards .card-container .card:hover .card-body .card-content {
            opacity: 1; }
        .cards .card-container .card:hover .card-thumb {
          background: #000; }
          .cards .card-container .card:hover .card-thumb img {
            opacity: .5; }
        .cards .card-container .card:hover .card_footer .button {
          opacity: 1; }
    .cards .card-container .badge {
      position: absolute;
      top: 0;
      right: 0;
      display: inline-block;
      margin: 0;
      padding: 0;
      background: #FFF;
      font-size: .65rem;
      font-weight: 300;
      color: #111;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      line-height: 1em;
      padding: .65em .65em .45em .65em;
      z-index: 10;
      border-radius: 3px; }
    .cards .card-container img {
      max-width: 100%;
      max-height: 100%;
      background-position: 50% 50%;
      background-repeat: no-repeat;
      background-size: contain;
      line-height: 0;
      font-size: 0;
      margin: 0;
      padding: 0;
      border: 0; }

.modular .features {
  text-align: center; }
  .modular .features .feature-items {
    padding: 0; }
    @media only all and (min-width: 75em) {
      .modular .features .feature-items {
        padding: 2rem 0 0 0; } }
    @supports not (flex-wrap: wrap) {
      .modular .features .feature-items {
        overflow: hidden; } }
  .modular .features .feature {
    display: inline-block;
    vertical-align: top;
    padding: 0 1rem;
    margin-top: 1rem;
    width: 50%; }
    @media only all and (min-width: 75em) {
      .modular .features .feature {
        margin-top: 0;
        width: 25%; } }
    @media only all and (max-width: 30em) {
      .modular .features .feature {
        width: 100%; } }
    .modular .features .feature i.fa {
      font-size: 2.8rem;
      color: #fdc516;
      height: 5.2rem;
      width: 5.2rem;
      line-height: 5.2rem;
      border-radius: 50%;
      background: rgba(253, 197, 22, 0.65);
      color: #f6f6f6;
      margin-bottom: 1.5rem;
      box-shadow: 0 0 0 0px rgba(253, 197, 22, 0); }
      @media only all and (max-width: 30em) {
        .modular .features .feature i.fa {
          font-size: 2.2rem;
          height: 4.2rem;
          width: 4.2rem;
          line-height: 4.2rem;
          margin-bottom: 1rem; } }
    .modular .features .feature:nth-child(2) i.fa {
      background: rgba(253, 197, 22, 0.65); }
    .modular .features .feature:nth-child(3) i.fa {
      background: rgba(253, 197, 22, 0.75); }
    .modular .features .feature:nth-child(4) i.fa {
      background: rgba(253, 197, 22, 0.85); }
    .modular .features .feature:hover i.fa {
      background: #fdc516;
      box-shadow: 0 0 0 10px rgba(253, 197, 22, 0.35);
      color: #FFF; }
    .modular .features .feature h4 {
      display: block;
      font-weight: 300;
      font-size: 1.25rem;
      padding-bottom: 1rem !important;
      margin-bottom: 0 !important; }
      @media only all and (max-width: 30em) {
        .modular .features .feature h4 {
          padding-bottom: 0.35rem !important; } }
    .modular .features .feature .feature-decription {
      display: block;
      font-size: 1rem;
      margin-top: .5rem; }
      .modular .features .feature .feature-decription:before {
        content: ' ';
        display: block;
        margin: 0 auto 1rem auto;
        width: 5rem;
        height: 1px;
        background: rgba(0, 0, 0, 0.15); }
        @media only all and (max-width: 30em) {
          .modular .features .feature .feature-decription:before {
            display: none; } }
      .modular .features .feature .feature-decription .feature-description-single {
        display: block;
        padding-bottom: .35rem; }
  .modular .features.big {
    text-align: center; }
    .modular .features.big .feature {
      width: 50%; }
      @media only all and (max-width: 30em) {
        .modular .features.big .feature {
          margin-top: 1rem;
          width: 100%; } }
    .modular .features.big i.fa {
      font-size: 3rem;
      float: left; }
    .modular .features.big .feature-content {
      padding-right: 2rem; }
      .modular .features.big .feature-content.icon-offset {
        margin-left: 5rem; }
      .modular .features.big .feature-content h4 {
        font-size: 1.3rem;
        text-align: left; }
      .modular .features.big .feature-content p {
        padding: 0;
        text-align: left; }
  .modular .features.section_bg-yellow .feature .feature-decription:before {
    background: rgba(255, 255, 255, 0.5); }
  .modular .features.section_bg-yellow .feature i.fa {
    background: rgba(255, 255, 255, 0.2); }
  .modular .features.section_bg-yellow .feature:hover i.fa {
    color: #fdc516;
    background: white;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2); }

@media only all and (max-width: 59.938em) {
  .callout {
    text-align: center; } }
.callout .col_image {
  vertical-align: middle;
  text-align: center; }
  .callout .col_image img {
    height: auto;
    max-width: 100%;
    max-height: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain; }
@media only all and (max-width: 47.938em) {
  .callout .col_image {
    order: 1;
    margin-bottom: 1.7rem; }
    .callout .col_image img {
      max-height: 20rem; }
  .callout .col_text {
    order: 2;
    margin-top: 0 !important; } }
.callout .section-headline--subline {
  margin-bottom: 3.4rem; }
  @media only all and (max-width: 47.938em) {
    .callout .section-headline--subline {
      margin-bottom: 2.7rem; } }
.callout.layout-left .grid .col_text, .callout.layout-right .grid .col_text {
  margin-top: -.5rem; }

@media only all and (max-width: 59.938em) {
  .callout.textoptimized.layout-left .grid, .callout.textoptimized.layout-left .row {
    text-align: left; } }
.textoptimized {
  /*
  h3 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 3rem;
    font-weight: 900;
    margin-left: -1em;
    @include breakpoint(mobile-only) {
      margin-left: 0;
      font-size: 2rem;
    }
  }
  */ }
  .textoptimized .col_text.size-1-2 {
    margin: 0 auto;
    width: 100%;
    flex: 0 100%;
    max-width: 34rem; }

.anything-slider-section {
  /* --- Slider Container / Section --- */
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  text-align: center;
  /* --- Slider --- */
  /* --- Slider --- */ }
  .anything-slider-section .anything-slider {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(133px + .5em);
    margin: auto;
    overflow: hidden; }
    .anything-slider-section .anything-slider:before, .anything-slider-section .anything-slider:after {
      content: ' ';
      display: block;
      height: 100%;
      width: 1em;
      position: absolute;
      top: 0;
      bottom: 0;
      z-index: +1; }
    .anything-slider-section .anything-slider:before {
      left: 2em;
      /*
      background: -moz-linear-gradient(left, rgba(238,238,238,1) 0%, rgba(238,238,238,0) 100%);
      background: -webkit-linear-gradient(left, rgba(238,238,238,1) 0%,rgba(238,238,238,0) 100%);
      background: linear-gradient(to right, rgba(238,238,238,1) 0%,rgba(238,238,238,0) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#00eeeeee',GradientType=1 );
      */ }
    .anything-slider-section .anything-slider:after {
      right: 2em;
      /*
      background: -moz-linear-gradient(left, rgba(238,238,238,0) 0%, rgba(238,238,238,1) 100%);
      background: -webkit-linear-gradient(left, rgba(238,238,238,0) 0%,rgba(238,238,238,1) 100%);
      background: linear-gradient(to right, rgba(238,238,238,0) 0%,rgba(238,238,238,1) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00eeeeee', endColorstr='#eeeeee',GradientType=1 );
      */ }
    .anything-slider-section .anything-slider .logo-slider-frame {
      /* --- Complete line of visible slider items --- */
      position: absolute;
      top: 0;
      left: 2em;
      right: 2em;
      bottom: 0;
      overflow: hidden;
      text-align: center; }
      .anything-slider-section .anything-slider .logo-slider-frame .logo-slider-item {
        position: absolute;
        top: 0;
        bottom: 0;
        height: 100%;
        width: 16.66%; }
        @media only all and (min-width: 60em) and (max-width: 74.938em) {
          .anything-slider-section .anything-slider .logo-slider-frame .logo-slider-item.item-size-1-8 {
            width: 12.5% !important; }
          .anything-slider-section .anything-slider .logo-slider-frame .logo-slider-item.item-size-1-6 {
            width: 16.66% !important; }
          .anything-slider-section .anything-slider .logo-slider-frame .logo-slider-item.item-size-1-5 {
            width: 20% !important; }
          .anything-slider-section .anything-slider .logo-slider-frame .logo-slider-item.item-size-1-4 {
            width: 25% !important; }
          .anything-slider-section .anything-slider .logo-slider-frame .logo-slider-item.item-size-1-3 {
            width: 33.33% !important; } }
        .anything-slider-section .anything-slider .logo-slider-frame .logo-slider-item .logo-slider-inset {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          margin: 0 .25em;
          overflow: hidden; }
          .anything-slider-section .anything-slider .logo-slider-frame .logo-slider-item .logo-slider-inset img {
            position: relative;
            top: 50%;
            -moz-transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
  .anything-slider-section .arrow {
    cursor: pointer;
    position: absolute;
    width: 2em;
    height: 100%;
    padding: 0;
    margin: 0;
    outline: 0;
    background: transparent;
    opacity: .5;
    z-index: 20; }
    .anything-slider-section .arrow:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 0.75em;
      height: 0.75em;
      margin: auto;
      border-style: solid; }
    .anything-slider-section .arrow:hover {
      opacity: 1; }
  .anything-slider-section .prev {
    left: 0;
    bottom: 0; }
    .anything-slider-section .prev:before {
      left: 0.25em;
      border-width: 3px 0 0 3px;
      border-color: #333 transparent transparent #333;
      transform: rotate(-45deg); }
  .anything-slider-section .next {
    right: 0;
    bottom: 0; }
    .anything-slider-section .next:before {
      right: 0.25em;
      border-width: 3px 3px 0 0;
      border-color: #333 #333 transparent transparent;
      transform: rotate(45deg); }
  @media (max-width: 60em) {
    .anything-slider-section .anything-slider .logo-slider-item {
      width: 33.33% !important; }
    .anything-slider-section .anything-slider {
      height: 10em !important; } }
  @media (max-width: 45em) {
    .anything-slider-section .anything-slider .logo-slider-item {
      width: 50% !important; }
    .anything-slider-section .anything-slider {
      height: 12em !important; } }
  @media (max-width: 30em) {
    .anything-slider-section .anything-slider .logo-slider-item {
      width: 100% !important; }
    .anything-slider-section .anything-slider {
      height: 8em !important; } }

.testimonials .testimonial--quote,
.testimonials .testimonial--meta {
  margin: 0 auto;
  padding: 1rem 1rem 0 1rem; }
.testimonials .testimonial--quote {
  position: relative; }
  .testimonials .testimonial--quote:after {
    content: '“';
    font-size: 10rem;
    color: rgba(0, 0, 0, 0.05);
    font-weight: 700;
    position: absolute;
    top: -2.85rem;
    left: 0;
    display: inline-block;
    margin: 0 auto; }
.testimonials .testimonial--meta {
  font-size: 14px;
  line-height: 1.5em;
  margin: 0; }
  .testimonials .testimonial--meta:before {
    content: ' ';
    display: block;
    margin: 0 auto 1rem auto;
    width: 5rem;
    height: 1px;
    background: rgba(0, 0, 0, 0.15); }
.testimonials .cta {
  display: inline-block;
  margin-top: 2rem;
  border: none !important; }

@media only all and (max-width: 59.938em) {
  .gallery-small {
    text-align: center; } }
.gallery-small .gallery-small-container {
  margin: 0 auto;
  margin-bottom: 2rem;
  justify-content: center;
  text-align: center;
  display: flex; }
  @media only all and (min-width: 75em) {
    .gallery-small .gallery-small-container {
      width: 70%; } }
  .gallery-small .gallery-small-container .grid-item {
    padding: 1%; }
  @media only all and (max-width: 47.938em) {
    .gallery-small .gallery-small-container .grid-item {
      padding: 2.5%; }
      .gallery-small .gallery-small-container .grid-item img {
        max-width: 90px !important; } }
@media only all and (max-width: 47.938em) {
  .gallery-small .gallery-small-container {
    width: 100% !important; }
  .gallery-small [class*='size'] {
    -webkit-flex: 0 20%;
    -moz-flex: 0 20%;
    -ms-flex: 0 20%;
    flex: 0 20%; } }
.gallery-small .plugin--thumbnail {
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  border: none;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0), 0 1px 2px rgba(0, 0, 0, 0); }
  .gallery-small .plugin--thumbnail img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
    max-width: 500px;
    max-height: 500px;
    position: relative;
    font-size: 0;
    line-height: 0;
    border: none;
    border-radius: 3px; }
  .gallery-small .plugin--thumbnail:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px); }

.accordion {
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center; }
  @media only all and (max-width: 59.938em) {
    .accordion {
      text-align: center; } }
  .accordion .col_text {
    margin-bottom: 3rem; }
  .accordion .collapse {
    display: none;
    height: 0; }
    .accordion .collapse.in {
      display: block;
      height: auto; }
  .accordion .collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: .35s;
    -o-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-property: height, visibility;
    -o-transition-property: height, visibility;
    transition-property: height, visibility; }
  .accordion .panel-body:after,
  .accordion .panel-body:before {
    display: table;
    content: " "; }
  .accordion .panel-body:after {
    clear: both; }
  .accordion .panel-group {
    display: block;
    max-width: 780px;
    margin: 0 auto; }
  .accordion .panel {
    text-align: left !important;
    border: none !important;
    margin-bottom: 4px; }
    .accordion .panel .panel-heading {
      padding: 0;
      background: none; }
      .accordion .panel .panel-heading .panel-title {
        margin: 0 !important;
        padding: 0; }
        .accordion .panel .panel-heading .panel-title a {
          text-decoration: none !important;
          display: block;
          padding: 0.65rem 2.5rem 0.65rem 3rem;
          font-size: 1.2rem;
          background-color: rgba(0, 0, 0, 0.045);
          position: relative;
          color: #111 !important;
          font-weight: 300;
          border-radius: 4px 4px 0 0;
          border: none !important; }
          .accordion .panel .panel-heading .panel-title a:hover {
            background-color: rgba(0, 0, 0, 0.15);
            color: #111; }
          .accordion .panel .panel-heading .panel-title a:before {
            content: '\f056';
            font-family: "FontAwesome";
            display: inline-block;
            margin-right: .5rem;
            position: absolute;
            top: .6rem;
            left: 1rem;
            font-size: 1.5rem;
            height: 1em !important;
            line-height: 1em !important; }
          .accordion .panel .panel-heading .panel-title a.collapsed {
            border-radius: 4px;
            -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
            .accordion .panel .panel-heading .panel-title a.collapsed:before {
              content: "" !important; }
          .accordion .panel .panel-heading .panel-title a[aria-expanded="true"] {
            background-color: #fdc516; }
    .accordion .panel .panel-body {
      background: #FFF;
      border: none !important;
      padding: 1.5rem;
      border-radius: 0 0 4px 4px !important;
      -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.07);
      box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.07);
      font-size: 1rem !important; }
      .accordion .panel .panel-body p {
        margin-bottom: 1em; }
      .accordion .panel .panel-body li {
        margin-bottom: .5em; }
      .accordion .panel .panel-body ul, .accordion .panel .panel-body ol, .accordion .panel .panel-body table, .accordion .panel .panel-body p {
        font-size: inherit !important;
        margin-top: 0; }
      .accordion .panel .panel-body *:last-child {
        margin-bottom: 0 !important; }
  .accordion.section_bg-darkgrey .panel .panel-heading .panel-title a {
    background: rgba(255, 255, 255, 0.045) !important;
    color: #AAA !important; }
    .accordion.section_bg-darkgrey .panel .panel-heading .panel-title a:hover {
      background: rgba(255, 255, 255, 0.07) !important;
      color: #FFF !important; }
  .accordion.section_bg-darkgrey .panel .panel-body {
    color: #333; }
  .accordion.section_bg-darkgrey .panel .panel-body a {
    color: #fdc516 !important; }

.pricing {
  background-color: #f6f6f6;
  padding-bottom: 4rem; }

@media only all and (max-width: 47.938em) {
  .pricing-column.highlight {
    margin-top: 0 !important; } }
.pricing-table {
  position: relative;
  text-align: center;
  z-index: 5;
  justify-content: center;
  margin-top: -42px; }
  .pricing-table ul {
    margin: 0 0 1em 0;
    padding: 0;
    list-style-type: none;
    list-style-position: outside;
    text-align: left;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    font-size: .8em; }
    .pricing-table ul li {
      margin: 0 !important;
      padding: .45em 1em .45em 2.5em;
      position: relative;
      line-height: 1.35em; }
      .pricing-table ul li:nth-child(odd) {
        background: rgba(0, 0, 0, 0.02); }
      .pricing-table ul li:before {
        content: '\f00d';
        font-family: "FontAwesome";
        display: inline-block;
        color: #ff3f83;
        padding-right: .5em;
        position: absolute;
        top: .4em;
        left: 1em;
        margin: 0; }
      .pricing-table ul li.check:before {
        content: '\f00c';
        color: #fdc516; }
  .pricing-table .pricing-column {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 5.5rem;
    background: #fafafa;
    max-width: 380px;
    border-left: 1px solid rgba(0, 0, 0, 0.07);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0), 0 1px 2px rgba(0, 0, 0, 0); }
    .pricing-table .pricing-column:first-child {
      -webkit-border-radius: 0 0 0 4px;
      border-radius: 0 0 0 4px; }
      .pricing-table .pricing-column:first-child h3 {
        -webkit-border-radius: 4px 0 0 0;
        border-radius: 4px 0 0 0; }
    .pricing-table .pricing-column:last-child {
      -webkit-border-radius: 0 0 4px 0;
      border-radius: 0 0 4px 0;
      border-right: 1px solid rgba(0, 0, 0, 0.07); }
      .pricing-table .pricing-column:last-child h3 {
        -webkit-border-radius: 0 4px  0 0;
        border-radius: 0 4px 0 0;
        margin-right: -1px; }
    .pricing-table .pricing-column h3 {
      text-align: center;
      margin: -4px 0 0 -1px;
      font-size: .85rem;
      font-weight: bold;
      font-weight: 700;
      line-height: 1.2em;
      padding: .65em .65em .75em .65em;
      color: #FFF;
      border-top: 1px solid #333;
      background: #222222;
      background: -moz-linear-gradient(top, #222222 0%, #0c0c0c 100%);
      background: -webkit-linear-gradient(top, #222222 0%, #0c0c0c 100%);
      background: linear-gradient(to bottom, #222222 0%, #0c0c0c 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#222222', endColorstr='#0c0c0c',GradientType=0 ); }
    .pricing-table .pricing-column.highlight {
      margin-top: -25px;
      background: #FFF;
      -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.07);
      box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.07);
      z-index: +1; }
      .pricing-table .pricing-column.highlight h3 {
        border-top-color: #fdc516;
        border-left-color: #fdc516;
        border-left-color: #fdc516;
        padding-bottom: .5em;
        color: #111;
        -webkit-border-radius: 4px 4px 0 0;
        border-radius: 4px 4px 0 0;
        background: -moz-linear-gradient(top, #fed450 0%, #fdc618 100%);
        background: -webkit-linear-gradient(top, #fed450 0%, #fdc618 100%);
        background: linear-gradient(to bottom, #fed450 0%, #fdc618 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fed450', endColorstr='#fdc618',GradientType=0 ); }
      .pricing-table .pricing-column.highlight .highlight-reason {
        display: block;
        font-weight: bold;
        font-weight: 400;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: rgba(0, 0, 0, 0.4);
        padding: .65em 0 .65em 0;
        text-shadow: none;
        line-height: 1.2em; }
    .pricing-table .pricing-column .pricing-column-content {
      position: relative; }
    .pricing-table .pricing-column .pricing-column-footer {
      position: absolute;
      bottom: 0;
      width: 100%;
      padding: 0 1rem 1rem 1rem; }
    .pricing-table .pricing-column .interval {
      font-size: 16px;
      color: #999;
      min-height: 38px;
      display: block;
      padding: 1rem;
      padding-top: 0; }
    .pricing-table .pricing-column h4 {
      font-weight: 300;
      margin: 0 0 0 -22px;
      padding: 1rem 1rem 5px 1rem;
      font-size: 2.5rem;
      line-height: 1em;
      color: #333; }
    .pricing-table .pricing-column .currency {
      font-size: 22px;
      line-height: 22px;
      top: -14px;
      right: -6px;
      font-weight: 300;
      position: relative; }
    .pricing-table .pricing-column .button {
      margin: 0 !important; }
    .pricing-table .pricing-column .button + .button {
      margin-top: 0.5rem !important; }
    .pricing-table .pricing-column a {
      color: inherit; }
      .pricing-table .pricing-column a:hover {
        color: inherit; }
  @media only all and (max-width: 47.938em) {
    .pricing-table .pricing-column h3 {
      -webkit-border-radius: 4px 4px 0 0 !important;
      border-radius: 4px 4px 0 0 !important; } }

.fullwidth_background {
  color: #FFF;
  position: relative;
  overflow: hidden;
  border-top: none !important; }
  .fullwidth_background .image-overlay,
  .fullwidth_background .image-overlay:after,
  .fullwidth_background .bg-img {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .fullwidth_background .image-overlay {
    z-index: 1;
    background: rgba(0, 0, 0, 0.35); }
  .fullwidth_background .bg-img {
    z-index: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%; }
  .fullwidth_background .col_text {
    position: relative;
    z-index: 2; }

.register {
  background: #f5f5f5; }
  .register .form--container {
    max-width: 540px;
    margin: 0 auto 1.7rem auto;
    padding: 2.7rem 1.7rem 1.7rem 1.7rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.5);
    border: 0.5rem solid rgba(0, 0, 0, 0.07); }
    @media only all and (max-width: 30em) {
      .register .form--container {
        margin-left: -1rem;
        margin-right: -1rem; } }

.lead {
  text-align: center;
  padding-top: 2.7rem;
  padding-bottom: 1rem;
  /*
    .content-width {
      max-width: 880px;
    }
  */
  /*
    h3 {
      font-size: 1.5rem;
      line-height: 1.4em!important;
    }
  */ }
  @media only all and (min-width: 75em) {
    .lead h3:first-child {
      margin-top: 4rem !important; } }
  @media only all and (max-width: 47.938em) {
    .lead h3:first-child {
      margin-top: 2rem !important; } }
  .lead p {
    margin-top: 0;
    font-size: 1.2em;
    line-height: 1.4em; }
  .lead.section_bg-yellow {
    color: #111;
    background-color: #ffd142; }
  @media screen and (max-width: 600px) {
    .lead {
      padding-bottom: 2.7rem !important; }
      .lead p {
        margin: 0 !important; } }

@media screen and (max-width: 768px) {
  .modular-row.callout.lead .content-width {
    padding-left: 1.5rem;
    padding-right: 1.5rem; }
  .modular-row.callout.lead h3 {
    font-size: 1.4rem; }
  .modular-row.callout.lead p {
    font-size: 1.05rem; } }
/*
.modular-row.features,
.modular-row.callout:not(.lead) {
  border-top: none!important;
}
*/
.gallery {
  padding-top: 4rem;
  padding-bottom: 2rem; }
  @media only all and (max-width: 59.938em) {
    .gallery {
      text-align: center; } }
  .gallery img {
    height: auto; }
  .gallery h3 {
    font-weight: 300; }
  .gallery .gallery-container {
    vertical-align: middle;
    text-align: center; }
    .gallery .gallery-container .gallery-item {
      display: inline-block;
      position: relative;
      padding: 1%;
      margin: 0 auto;
      width: 33.33%;
      max-width: 300px; }
      @media only all and (max-width: 47.938em) {
        .gallery .gallery-container .gallery-item {
          width: 50% !important; } }
    .gallery .gallery-container.item-size-1-2 .gallery-item {
      width: 50%; }
    .gallery .gallery-container.item-size-1-3 .gallery-item {
      width: 33.33%; }
    .gallery .gallery-container.item-size-1-4 .gallery-item {
      width: 25%; }
    .gallery .gallery-container.item-size-1-5 .gallery-item {
      width: 20%; }
    .gallery .gallery-container.item-size-1-6 .gallery-item {
      width: 12.5%; }
    @media screen and (min-width: 47.938em) and (max-width: 1260px) {
      .gallery .gallery-container.item-size-1-3 .card:hover .card-body {
        height: 90px; }
      .gallery .gallery-container.item-size-1-4 .card {
        padding: .3rem; }
        .gallery .gallery-container.item-size-1-4 .card .badge {
          font-size: .5rem; }
        .gallery .gallery-container.item-size-1-4 .card .card-body {
          padding: 0.5em 1em !important;
          height: 38px; }
          .gallery .gallery-container.item-size-1-4 .card .card-body .card-title {
            font-size: 0.75rem !important; }
          .gallery .gallery-container.item-size-1-4 .card .card-body .card-meta {
            font-size: .5rem; }
        .gallery .gallery-container.item-size-1-4 .card:hover .card-body {
          height: 74px; }
        .gallery .gallery-container.item-size-1-4 .card:hover .card-thumb img {
          -webkit-transform: translateY(-34px);
          -moz-transform: translateY(-34px);
          -ms-transform: translateY(-34px);
          -o-transform: translateY(-34px);
          transform: translateY(-34px); } }
    .gallery .gallery-container .card {
      outline: none !important;
      display: block;
      height: 100%;
      width: 100%;
      position: relative;
      overflow: hidden;
      margin: 0 auto;
      background: #FFF;
      padding: 2.5%;
      border-radius: 3px;
      border: none !important;
      -webkit-transition: all 250ms;
      -moz-transition: all 250ms;
      transition: all 250ms;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
      .gallery .gallery-container .card .card-body {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: #FFF;
        padding: .85em 1em;
        color: #111;
        width: 100%;
        height: 56px;
        -webkit-transition: height 0.3s;
        -moz-transition: height 0.3s;
        transition: height 0.3s; }
        .gallery .gallery-container .card .card-body .card-title {
          font-size: 1rem;
          line-height: 1.2em;
          font-weight: 300;
          position: relative;
          z-index: +1;
          margin: 0 !important;
          text-overflow: ellipsis;
          white-space: nowrap;
          overflow: hidden; }
        .gallery .gallery-container .card .card-body .card-meta {
          font-size: 14px;
          text-transform: uppercase;
          letter-spacing: 0.05em; }
      .gallery .gallery-container .card .card__footer {
        position: absolute;
        background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 55%, white 100%);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 55%, white 100%);
        color: #a3a9ab;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px 20px 10px;
        min-height: .5em;
        font-size: 12px;
        text-transform: uppercase; }
      .gallery .gallery-container .card .card-thumb {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: auto;
        display: block;
        background-color: #EEE;
        -webkit-transition: all 250ms;
        -moz-transition: all 250ms;
        transition: all 250ms; }
        .gallery .gallery-container .card .card-thumb img {
          width: 100%;
          height: auto;
          display: block;
          -webkit-transition: all 250ms;
          -moz-transition: all 250ms;
          transition: all 250ms;
          background-position: 50% 50%;
          background-repeat: no-repeat;
          background-size: contain;
          -webkit-transform: translateY(-15px);
          -moz-transform: translateY(-15px);
          -ms-transform: translateY(-15px);
          -o-transform: translateY(-15px);
          transform: translateY(-15px); }
      .gallery .gallery-container .card:hover, .gallery .gallery-container .card:active {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
        transform: translateY(-5px); }
        .gallery .gallery-container .card:hover .card-body, .gallery .gallery-container .card:active .card-body {
          height: 110px; }
        .gallery .gallery-container .card:hover .card-thumb img, .gallery .gallery-container .card:active .card-thumb img {
          -webkit-transform: translateY(-50px);
          -moz-transform: translateY(-50px);
          -ms-transform: translateY(-50px);
          -o-transform: translateY(-50px);
          transform: translateY(-50px); }
      .gallery .gallery-container .card:active {
        box-shadow: 0 5px 6px rgba(0, 0, 0, 0.19), 0 3px 3px rgba(0, 0, 0, 0.23);
        -webkit-transform: translateY(-3px);
        -moz-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
        -o-transform: translateY(-3px);
        transform: translateY(-3px); }
    .gallery .gallery-container .badge {
      position: absolute;
      top: 0;
      right: 0;
      display: inline-block;
      margin: 0;
      padding: 0;
      background: #FFF;
      font-size: .65rem;
      font-weight: 300;
      color: #111;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      line-height: 1em;
      padding: .65em .65em .45em .45em;
      z-index: 10;
      -webkit-border-radius: 0 0 0 3px;
      border-radius: 0 0 0 3px; }
    .gallery .gallery-container img {
      max-width: 100%;
      max-height: 100%;
      background-position: 50% 50%;
      background-repeat: no-repeat;
      background-size: contain;
      line-height: 0;
      font-size: 0;
      margin: 0;
      padding: 0;
      border: 0; }

@media only all and (max-width: 59.938em) {
  .columns {
    text-align: center; } }
.columns .grid .grid-item {
  padding-right: 1.5em; }

.google-maps {
  position: relative;
  overflow: hidden;
  height: 600px; }
  @media only all and (max-width: 59.938em) {
    .google-maps {
      height: 480px; } }
  .google-maps .col_text,
  .google-maps .google-maps-iframe-container {
    position: absolute;
    height: 600px;
    width: 50%;
    top: 0;
    bottom: 0;
    display: table-cell;
    border: none;
    margin: 0; }
    @media only all and (max-width: 59.938em) {
      .google-maps .col_text,
      .google-maps .google-maps-iframe-container {
        height: 480px; } }
    .google-maps .col_text *,
    .google-maps .google-maps-iframe-container * {
      padding-right: 1rem; }
  .google-maps .col_text {
    left: 0;
    z-index: 2; }
  .google-maps .google-maps-iframe-container {
    right: 0; }
  .google-maps .google-maps-iframe-container {
    z-index: 0; }
    .google-maps .google-maps-iframe-container #map {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      max-width: 100%;
      height: 100%; }
  @media screen and (max-width: 600px) {
    .google-maps {
      height: auto !important;
      padding-bottom: 1rem !important; }
      .google-maps .col_text,
      .google-maps .google-maps-iframe-container {
        position: relative !important;
        width: 100% !important;
        display: block !important; }
      .google-maps .col_text {
        height: auto !important;
        text-align: center; }
      .google-maps .google-maps-iframe-container {
        height: 360px !important; } }

@media only all and (max-width: 47.938em) {
  .calculator .section-headline,
  .calculator .section-subline {
    text-align: left; } }
.calculator .col_text {
  padding-right: 2rem;
  text-align: left; }
  @media only all and (max-width: 47.938em) {
    .calculator .col_text {
      padding-right: 0;
      text-align: left; } }
@media only all and (min-width: 48em) and (max-width: 59.938em) {
  .calculator .col_text.size-1-2 {
    padding-right: 1rem; } }
.calculator #calculator-container {
  text-align: center;
  margin: 0 auto 1.7rem auto;
  padding: 1.7rem;
  border-radius: 6px;
  border: 0.5rem solid rgba(0, 0, 0, 0.07);
  background: #FFF; }
  @media only all and (max-width: 30em) {
    .calculator #calculator-container {
      margin-left: -1rem;
      margin-right: -1rem; } }
  .calculator #calculator-container .calculator-header {
    position: relative;
    margin: -1.7rem; }
  .calculator #calculator-container .calculator-headline {
    background: rgba(0, 0, 0, 0.02);
    padding: 1.7rem;
    padding-bottom: 3.5rem;
    margin-bottom: 1.7rem;
    font-weight: 700; }
  .calculator #calculator-container .triangle {
    height: 70px;
    display: block;
    margin-top: -1.7rem;
    margin-bottom: 4rem;
    width: 100%; }
    .calculator #calculator-container .triangle polygon {
      fill: rgba(0, 0, 0, 0.02); }
  .calculator #calculator-container #calculator-screens {
    display: block;
    position: absolute;
    height: 4.4rem;
    left: 0;
    right: 0;
    bottom: 1.7rem;
    margin: 0 auto !important; }
    .calculator #calculator-container #calculator-screens i.fa {
      display: inline-block;
      font-size: 4.4rem;
      color: rgba(0, 0, 0, 0.07); }
  .calculator #calculator-container #calculator-screens-number {
    position: absolute;
    top: .6rem;
    left: -6px;
    right: 0;
    margin: 0 auto !important;
    font-size: 1.35rem !important;
    display: block;
    text-align: center;
    line-height: 2.5rem;
    height: 2.5rem;
    width: 4.1rem;
    background: rgba(255, 255, 255, 0) !important;
    border: none !important;
    font-weight: 700 !important;
    padding-left: 0.45em !important; }
    .calculator #calculator-container #calculator-screens-number:focus {
      background: white !important; }
  .calculator #calculator-container .row {
    margin: 0 auto;
    max-width: 780px; }
  .calculator #calculator-container #the-result p:nth-child(2) {
    margin-bottom: .5rem; }
  .calculator #calculator-container .total-summary {
    margin: 0 auto 1.7rem auto; }
    .calculator #calculator-container .total-summary .total-summary-monthly,
    .calculator #calculator-container .total-summary .total-summary-annual {
      margin: 0;
      position: relative; }
      .calculator #calculator-container .total-summary .total-summary-monthly .total-summary-currency,
      .calculator #calculator-container .total-summary .total-summary-annual .total-summary-currency {
        display: inline-block;
        padding-right: .15em; }
      .calculator #calculator-container .total-summary .total-summary-monthly .total-summary-suffix,
      .calculator #calculator-container .total-summary .total-summary-annual .total-summary-suffix {
        display: inline-block;
        padding-left: .25em; }
    .calculator #calculator-container .total-summary .highlighted {
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1; }
      .calculator #calculator-container .total-summary .highlighted .total-summary-currency,
      .calculator #calculator-container .total-summary .highlighted .total-summary-suffix {
        font-size: 1rem; }
    .calculator #calculator-container .total-summary .total-summar-subline {
      display: block;
      font-size: .65rem;
      color: rgba(0, 0, 0, 0.65);
      margin-top: .5rem; }
  .calculator #calculator-container .total-summary,
  .calculator #calculator-container .result-message {
    min-height: 9rem; }
    @media only all and (max-width: 47.938em) {
      .calculator #calculator-container .total-summary,
      .calculator #calculator-container .result-message {
        min-height: 0; } }
  .calculator #calculator-container .payment-interval .payment-interval-description {
    font-size: 1rem;
    line-height: 1.35em;
    margin-bottom: 1.7rem; }
  .calculator #calculator-container .savings {
    display: inline-block;
    font-size: .65rem;
    line-height: 1.35em;
    color: #00732e;
    background: #e5f1ea;
    border: 1px solid #a6bdaf;
    border-radius: 3px;
    padding: .65em;
    margin: 0 auto;
    text-align: left; }
  .calculator #calculator-container .toggle {
    display: block;
    width: 100%;
    max-width: 320px;
    background: #eee;
    margin: 0 auto 1.7rem auto;
    border-radius: 2em;
    overflow: hidden; }
    .calculator #calculator-container .toggle .option {
      display: inline-block;
      width: 50%; }
    .calculator #calculator-container .toggle input {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      display: none; }
    .calculator #calculator-container .toggle label {
      display: block;
      text-align: center;
      margin: 0;
      width: 100%;
      height: 100%;
      padding: .75em .35em;
      box-sizing: border-box;
      white-space: nowrap;
      vertical-align: middle;
      touch-action: manipulation;
      cursor: pointer;
      color: rgba(0, 0, 0, 0.2);
      position: relative;
      z-index: 1; }
      .calculator #calculator-container .toggle label:after {
        content: ' ';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: block;
        background: -moz-linear-gradient(top, #fed450 0%, #fdc618 100%);
        background: -webkit-linear-gradient(top, #fed450 0%, #fdc618 100%);
        background: linear-gradient(to bottom, #fed450 0%, #fdc618 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fed450', endColorstr='#fdc618',GradientType=0 );
        border: 1px solid #fdc516;
        border-bottom-color: #fcae0c;
        opacity: 0;
        z-index: -1; }
    .calculator #calculator-container .toggle input:active ~ label {
      background: rgba(0, 0, 0, 0.07); }
    .calculator #calculator-container .toggle input:checked ~ label {
      color: #111;
      text-shadow: 0 0.05em 0 rgba(255, 255, 255, 0.5); }
      .calculator #calculator-container .toggle input:checked ~ label:after {
        opacity: 1; }
  .calculator #calculator-container input[type=range] {
    margin: auto;
    outline: none;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    -webkit-appearance: none;
    height: 6px;
    border-radius: 3px;
    width: 100%;
    width: calc(100% + 16px);
    margin-left: -8px;
    margin-right: -8px; }
  .calculator #calculator-container input[type=range]::-webkit-slider-runnable-track {
    box-shadow: none;
    border: none;
    background: transparent;
    -webkit-appearance: none; }
  .calculator #calculator-container input[type=range]::-webkit-slider-thumb {
    position: relative;
    width: 16px;
    height: 16px;
    border: 0;
    background: #fdc516;
    background: -moz-linear-gradient(top, #fed450 0%, #fdc618 100%);
    background: -webkit-linear-gradient(top, #fed450 0%, #fdc618 100%);
    background: linear-gradient(to bottom, #fed450 0%, #fdc618 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fed450', endColorstr='#fdc618',GradientType=0 );
    border-radius: 50%;
    box-shadow: 0 0 1px 0px rgba(253, 197, 22, 0.1);
    -webkit-appearance: none;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    cursor: pointer;
    z-index: 5; }
  .calculator #calculator-container input[type=range]::-webkit-slider-thumb:active {
    height: 18px;
    width: 18px;
    box-shadow: 0 0 0 10px rgba(253, 197, 22, 0.35); }
  .calculator #calculator-container input[type=range]::slider-runnable-track {
    box-shadow: none;
    border: none;
    background: transparent;
    -webkit-appearance: none; }
  .calculator #calculator-container input[type=range]::slider-thumb {
    position: relative;
    width: 16px;
    height: 16px;
    border: 0;
    background: #fdc516;
    border-radius: 50%;
    box-shadow: 0 0 1px 0px rgba(253, 197, 22, 0.35);
    -webkit-appearance: none;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    z-index: 5; }
  .calculator #calculator-container .zero-input[type=range]::-webkit-slider-thumb {
    background: #FFF;
    border: 2px solid #BBB;
    z-index: 5; }
  .calculator #calculator-container .slide-range-container {
    position: relative;
    margin: 0 1rem 4rem 1rem;
    /*
          #scale-50 {
            left: 15.5%;
          }
          #scale-100 {
            left: 31%;
          }
          #scale-150 {
            left: 47.5%;
          }
          #scale-200 {
            left: 64%;
          }
          #scale-250 {
            left: 80.5%;
          }
    */ }
    .calculator #calculator-container .slide-range-container .scale {
      position: absolute;
      text-align: center;
      padding-top: 1em;
      z-index: 1;
      color: rgba(0, 0, 0, 0.35); }
      .calculator #calculator-container .slide-range-container .scale:before {
        content: ' ';
        display: block;
        height: .65em;
        width: 2px;
        background: rgba(0, 0, 0, 0.15);
        position: absolute;
        top: 0;
        left: 50%;
        margin-left: -1px; }
      .calculator #calculator-container .slide-range-container .scale span {
        position: absolute;
        left: 0;
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        margin: 0; }
    .calculator #calculator-container .slide-range-container #scale-min {
      left: 0%; }
    .calculator #calculator-container .slide-range-container #scale_1-4 {
      left: 25%; }
    .calculator #calculator-container .slide-range-container #scale_2-4 {
      left: 50%; }
    .calculator #calculator-container .slide-range-container #scale_3-4 {
      left: 75%; }
    .calculator #calculator-container .slide-range-container #scale-max {
      left: 100%; }

.special {
  padding-bottom: 2rem !important; }
  @media only all and (max-width: 47.938em) {
    .special {
      padding-top: 4rem !important; } }
  .special .special-row {
    position: relative;
    width: 100%;
    display: table; }
    .special .special-row .special-image {
      display: table-cell;
      height: 370px;
      width: 50%;
      vertical-align: middle;
      text-align: center;
      position: relative;
      padding: 3rem 0; }
      @media only all and (max-width: 47.938em) {
        .special .special-row .special-image {
          padding-top: 2rem;
          height: 250px; } }
      @media only all and (max-width: 47.938em) {
        .special .special-row .special-image:nth-child(1) {
          padding-right: .5rem; } }
      @media only all and (max-width: 47.938em) {
        .special .special-row .special-image:nth-child(2) {
          padding-left: .5rem; } }
      .special .special-row .special-image .special--message {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 2em;
        text-align: center;
        display: inline-block;
        -moz-transform: translateY(25%);
        -webkit-transform: translateY(25%);
        -o-transform: translateY(25%);
        -ms-transform: translateY(25%);
        transform: translateY(25%);
        opacity: 0; }
        @media only all and (max-width: 47.938em) {
          .special .special-row .special-image .special--message {
            padding: 0 0 2em 0;
            opacity: 1;
            -moz-transform: translateY(0px);
            -webkit-transform: translateY(0px);
            -o-transform: translateY(0px);
            -ms-transform: translateY(0px);
            transform: translateY(0px); } }
      .special .special-row .special-image:hover .special--message {
        -moz-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -o-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1; }
      .special .special-row .special-image img {
        position: relative;
        max-width: 100%;
        max-height: 100%;
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1); }
        @media only all and (max-width: 47.938em) {
          .special .special-row .special-image img {
            -moz-transform: translateY(-25%);
            -webkit-transform: translateY(-25%);
            -o-transform: translateY(-25%);
            -ms-transform: translateY(-25%);
            transform: translateY(-25%); } }
      .special .special-row .special-image:hover img {
        -moz-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        -o-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9); }
        @media only all and (max-width: 47.938em) {
          .special .special-row .special-image:hover img {
            -moz-transform: translateY(-25%);
            -webkit-transform: translateY(-25%);
            -o-transform: translateY(-25%);
            -ms-transform: translateY(-25%);
            transform: translateY(-25%); } }
      .special .special-row .special-image:before {
        content: '1';
        position: absolute;
        border-radius: 50%;
        background: rgba(253, 197, 22, 0);
        color: rgba(255, 255, 255, 0);
        font-size: 1rem;
        font-weight: 700;
        text-align: center;
        padding: 0;
        height: 2em;
        width: 2em;
        line-height: 2em;
        z-index: 3;
        top: 0;
        left: 50%;
        margin-left: -1rem;
        -moz-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        -o-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9); }
        @media only all and (max-width: 47.938em) {
          .special .special-row .special-image:before {
            font-size: .85em;
            color: #FFF;
            background: #fdc516;
            box-shadow: 0 0 0 12px rgba(253, 197, 22, 0.5);
            -moz-transform: scale(1) translateY(-50%);
            -webkit-transform: scale(1) translateY(-50%);
            -o-transform: scale(1) translateY(-50%);
            -ms-transform: scale(1) translateY(-50%);
            transform: scale(1) translateY(-50%);
            top: -5%; } }
      .special .special-row .special-image:nth-child(2):before {
        content: '2'; }
      .special .special-row .special-image:hover:before {
        color: #FFF;
        background: #fdc516;
        box-shadow: 0 0 0 12px rgba(253, 197, 22, 0.5);
        -moz-transform: scale(1) translateY(-25%);
        -webkit-transform: scale(1) translateY(-25%);
        -o-transform: scale(1) translateY(-25%);
        -ms-transform: scale(1) translateY(-25%);
        transform: scale(1) translateY(-25%); }
    .special .special-row .arrow {
      display: block;
      width: 20%;
      position: absolute;
      top: 25%;
      left: -5%;
      right: 0;
      margin: 0 auto; }
      @media only all and (max-width: 47.938em) {
        .special .special-row .arrow {
          top: -10%;
          width: 25%; } }

.contact-form h3 {
  text-align: center; }
.contact-form #contact-form {
  max-width: 600px;
  margin: 0 auto; }

.image-reset, .imagefader .fader, .imagefader .fader .fader-item .fader-item-image, .imagefader .fader .image-placeholder--16-9 {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  line-height: 0;
  font-size: 0;
  width: 100%;
  height: auto; }

.bg-image {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat; }

.imagefader .fader {
  position: relative;
  width: 100%;
  height: auto;
  top: 0; }
  .imagefader .fader:after {
    content: ' ';
    display: block;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 5%;
    right: 2.5%;
    z-index: -1;
    filter: blur(3px);
    transform: scale(0.95); }
  .imagefader .fader .fader-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: hidden; }
    .imagefader .fader .fader-item .fader-item-image {
      position: relative;
      max-width: 100%; }
    .imagefader .fader .fader-item .fader-item-body {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(17, 17, 17, 0.85);
      font-size: 1rem;
      padding: 1.5rem;
      color: #FFF;
      text-align: center;
      opacity: 0;
      -moz-transform: translateY(100%);
      -webkit-transform: translateY(100%);
      -o-transform: translateY(100%);
      -ms-transform: translateY(100%);
      transform: translateY(100%); }
      .imagefader .fader .fader-item .fader-item-body p {
        margin: 0; }
    .imagefader .fader .fader-item:hover .fader-item-body {
      opacity: 1;
      -moz-transform: translateY(0px);
      -webkit-transform: translateY(0px);
      -o-transform: translateY(0px);
      -ms-transform: translateY(0px);
      transform: translateY(0px); }
  .imagefader .fader .image-placeholder--16-9 {
    position: static !important;
    z-index: 0;
    z-index: -1;
    max-width: 100%; }

/* --- Grid --- */
.gallery-grid-item {
  display: block;
  position: relative;
  float: left;
  padding: 4px;
  margin: 0;
  width: 25%; }
  @media only all and (max-width: 47.938em) {
    .gallery-grid-item {
      width: 100% !important; } }
  .gallery-grid-item.item-size-1-2 {
    width: 50%; }
  .gallery-grid-item.item-size-1-3 {
    width: 33.33%; }
  .gallery-grid-item.item-size-1-4 {
    width: 25%; }
  .gallery-grid-item.item-size-1-5 {
    width: 20%; }
  .gallery-grid-item.item-size-1-6 {
    width: 12.5%; }

/* --- Container + Items --- */
.gallery-portfolio {
  margin-bottom: 0 !important;
  padding-top: 4rem;
  padding-bottom: 4rem;
  margin-left: calc(4px * -.5);
  margin-right: calc(4px * -.5); }
  .gallery-portfolio.portfolio-fullwidth {
    padding-left: 0 !important;
    padding-right: 0 !important; }
    .gallery-portfolio.portfolio-fullwidth .portfolio-container {
      padding: 0 calc(4px * .5); }
  @media only all and (max-width: 47.938em) {
    .gallery-portfolio {
      margin-left: 0;
      margin-right: 0; } }
  .gallery-portfolio img {
    height: auto; }
  .gallery-portfolio .portfolio-container {
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
    text-align: center; }
    .gallery-portfolio .portfolio-container .portfolio-item {
      position: relative;
      display: block;
      overflow: hidden;
      margin: 0;
      padding: 0;
      height: 100%;
      width: 100%;
      /* --- Styles --- */
      /* --- Show Text on Hover --- */
      /* --- Show Description on Hover --- */
      /* --- Overlay Style --- */ }
      .gallery-portfolio .portfolio-container .portfolio-item a {
        padding: 0 !important;
        margin: 0 !important;
        border: none !important; }
      .gallery-portfolio .portfolio-container .portfolio-item .portfolio-item-image {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: auto;
        display: block;
        -webkit-transition: all .3s ease-out;
        -moz-transition: all .3s ease-out;
        -ms-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out; }
        .gallery-portfolio .portfolio-container .portfolio-item .portfolio-item-image img {
          width: 100%;
          margin: 0 !important;
          padding: 0 !important;
          line-height: 0;
          font-size: 0;
          height: auto;
          display: block;
          -webkit-transition: all 250ms;
          -moz-transition: all 250ms;
          transition: all 250ms;
          background-position: 50% 50%;
          background-repeat: no-repeat;
          background-size: cover;
          -webkit-transition: all .3s ease-out;
          -moz-transition: all .3s ease-out;
          -ms-transition: all .3s ease-out;
          -o-transition: all .3s ease-out;
          transition: all .3s ease-out; }
      .gallery-portfolio .portfolio-container .portfolio-item .portfolio-item-body {
        display: block;
        position: absolute;
        bottom: 0;
        width: 100%;
        -webkit-transition: all .3s ease-out;
        -moz-transition: all .3s ease-out;
        -ms-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out;
        opacity: 1;
        -moz-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -o-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px); }
        .gallery-portfolio .portfolio-container .portfolio-item .portfolio-item-body .portfolio-item-title {
          font-size: 1rem;
          font-weight: 300;
          padding: .65em 1em .85em 1em;
          margin: 0 !important;
          text-overflow: ellipsis;
          white-space: nowrap;
          overflow: hidden; }
          .gallery-portfolio .portfolio-container .portfolio-item .portfolio-item-body .portfolio-item-title:empty {
            padding: 0; }
        .gallery-portfolio .portfolio-container .portfolio-item .portfolio-item-body .portfolio-item-title,
        .gallery-portfolio .portfolio-container .portfolio-item .portfolio-item-body .portfolio-item-description {
          max-width: 100% !important;
          position: relative;
          background: #FFF;
          color: #111;
          z-index: +1;
          line-height: 1.2em;
          width: 100%;
          -webkit-transition: all .3s ease-out;
          -moz-transition: all .3s ease-out;
          -ms-transition: all .3s ease-out;
          -o-transition: all .3s ease-out;
          transition: all .3s ease-out; }
        .gallery-portfolio .portfolio-container .portfolio-item .portfolio-item-body .portfolio-item-description {
          margin: 0;
          margin-top: -0.35em !important;
          font-size: .75em;
          padding: 0 1em 1.5em 1em; }
          .gallery-portfolio .portfolio-container .portfolio-item .portfolio-item-body .portfolio-item-description:empty {
            padding: 0 !important;
            margin: 0 !important; }
      .gallery-portfolio .portfolio-container .portfolio-item:hover .portfolio-item-body {
        opacity: 0;
        -moz-transform: translateY(100%);
        -webkit-transform: translateY(100%);
        -o-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%); }
      .gallery-portfolio .portfolio-container .portfolio-item:hover .portfolio-item-image img {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1); }
      .gallery-portfolio .portfolio-container .portfolio-item.grayscale .portfolio-item-image {
        opacity: 0.5 !important; }
        .gallery-portfolio .portfolio-container .portfolio-item.grayscale .portfolio-item-image img {
          opacity: 1;
          -webkit-filter: grayscale(100%);
          filter: grayscale(100%); }
      .gallery-portfolio .portfolio-container .portfolio-item.grayscale:hover .portfolio-item-image {
        opacity: 1 !important; }
        .gallery-portfolio .portfolio-container .portfolio-item.grayscale:hover .portfolio-item-image img {
          opacity: 1;
          -webkit-filter: grayscale(0%);
          filter: grayscale(0%); }
      .gallery-portfolio .portfolio-container .portfolio-item.hide-text {
        -webkit-transition: all 250ms;
        -moz-transition: all 250ms;
        transition: all 250ms;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
        .gallery-portfolio .portfolio-container .portfolio-item.hide-text .portfolio-item-body {
          opacity: 1;
          -moz-transform: translateY(101%);
          -webkit-transform: translateY(101%);
          -o-transform: translateY(101%);
          -ms-transform: translateY(101%);
          transform: translateY(101%); }
          .gallery-portfolio .portfolio-container .portfolio-item.hide-text .portfolio-item-body .portfolio-item-title,
          .gallery-portfolio .portfolio-container .portfolio-item.hide-text .portfolio-item-body .portfolio-item-description {
            opacity: 1 !important; }
          .gallery-portfolio .portfolio-container .portfolio-item.hide-text .portfolio-item-body .portfolio-item-title {
            -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.07);
            box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.07); }
        .gallery-portfolio .portfolio-container .portfolio-item.hide-text:hover {
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          -webkit-transform: translateY(-5px);
          -moz-transform: translateY(-5px);
          -ms-transform: translateY(-5px);
          -o-transform: translateY(-5px);
          transform: translateY(-5px); }
          .gallery-portfolio .portfolio-container .portfolio-item.hide-text:hover .portfolio-item-image img {
            -webkit-transform: translateY(-5px);
            -moz-transform: translateY(-5px);
            -ms-transform: translateY(-5px);
            -o-transform: translateY(-5px);
            transform: translateY(-5px); }
          .gallery-portfolio .portfolio-container .portfolio-item.hide-text:hover .portfolio-item-body {
            opacity: 1 !important;
            -moz-transform: translateY(0) !important;
            -webkit-transform: translateY(0) !important;
            -o-transform: translateY(0) !important;
            -ms-transform: translateY(0) !important;
            transform: translateY(0) !important; }
      .gallery-portfolio .portfolio-container .portfolio-item.hide-description {
        border-radius: 1px;
        -webkit-transition: all 250ms;
        -moz-transition: all 250ms;
        transition: all 250ms;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
        .gallery-portfolio .portfolio-container .portfolio-item.hide-description .portfolio-item-body {
          opacity: 1;
          -moz-transform: translateY(100%);
          -webkit-transform: translateY(100%);
          -o-transform: translateY(100%);
          -ms-transform: translateY(100%);
          transform: translateY(100%); }
          .gallery-portfolio .portfolio-container .portfolio-item.hide-description .portfolio-item-body .portfolio-item-title,
          .gallery-portfolio .portfolio-container .portfolio-item.hide-description .portfolio-item-body .portfolio-item-description {
            opacity: 1 !important; }
          .gallery-portfolio .portfolio-container .portfolio-item.hide-description .portfolio-item-body .portfolio-item-title {
            -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.07);
            box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.07);
            margin-top: -2.6em !important; }
          .gallery-portfolio .portfolio-container .portfolio-item.hide-description .portfolio-item-body .portfolio-item-description {
            margin-top: 0 !important;
            color: rgba(0, 0, 0, 0);
            font-size: .75em;
            padding: 0 1em 1.5em 1em; }
        .gallery-portfolio .portfolio-container .portfolio-item.hide-description:hover {
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          -webkit-transform: translateY(-5px);
          -moz-transform: translateY(-5px);
          -ms-transform: translateY(-5px);
          -o-transform: translateY(-5px);
          transform: translateY(-5px); }
          .gallery-portfolio .portfolio-container .portfolio-item.hide-description:hover .portfolio-item-image img {
            -webkit-transform: translateY(-5px);
            -moz-transform: translateY(-5px);
            -ms-transform: translateY(-5px);
            -o-transform: translateY(-5px);
            transform: translateY(-5px); }
          .gallery-portfolio .portfolio-container .portfolio-item.hide-description:hover .portfolio-item-body {
            opacity: 1 !important;
            -webkit-transform: translateY(0) !important;
            -moz-transform: translateY(0) !important;
            -ms-transform: translateY(0) !important;
            -o-transform: translateY(0) !important;
            transform: translateY(0) !important; }
            .gallery-portfolio .portfolio-container .portfolio-item.hide-description:hover .portfolio-item-body .portfolio-item-title,
            .gallery-portfolio .portfolio-container .portfolio-item.hide-description:hover .portfolio-item-body .portfolio-item-description {
              background: white; }
            .gallery-portfolio .portfolio-container .portfolio-item.hide-description:hover .portfolio-item-body .portfolio-item-description {
              margin-top: -0.35em !important;
              color: rgba(17, 17, 17, 0.85); }
      .gallery-portfolio .portfolio-container .portfolio-item.item-overlay {
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        vertical-align: middle; }
        .gallery-portfolio .portfolio-container .portfolio-item.item-overlay:hover .portfolio-item-image img {
          -moz-transform: translateY(0) !important;
          -webkit-transform: translateY(0) !important;
          -o-transform: translateY(0) !important;
          -ms-transform: translateY(0) !important;
          transform: translateY(0) !important; }
        .gallery-portfolio .portfolio-container .portfolio-item.item-overlay .portfolio-item-body {
          position: absolute;
          z-index: 20;
          display: block;
          width: 100%;
          height: 100% !important;
          margin: 0;
          padding: 0;
          border: none !important;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: rgba(255, 255, 255, 0.45);
          text-align: center;
          vertical-align: middle;
          opacity: 1 !important;
          -moz-transform: translateY(0px);
          -webkit-transform: translateY(0px);
          -o-transform: translateY(0px);
          -ms-transform: translateY(0px);
          transform: translateY(0px); }
          .gallery-portfolio .portfolio-container .portfolio-item.item-overlay .portfolio-item-body .portfolio-item-title {
            display: table;
            position: absolute;
            z-index: +1;
            background: transparent !important;
            border: none !important;
            margin: 0;
            padding: 0 1em;
            font-weight: bold;
            color: rgba(17, 17, 17, 0.65);
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            -webkit-hyphens: auto;
            -moz-hyphens: auto;
            hyphens: auto;
            word-wrap: break-word;
            width: 100%;
            height: 100%;
            text-align: center;
            vertical-align: middle;
            font-size: 1.2rem; }
            .gallery-portfolio .portfolio-container .portfolio-item.item-overlay .portfolio-item-body .portfolio-item-title span {
              display: table-cell;
              position: relative;
              width: 100%;
              height: 100%;
              text-align: center;
              vertical-align: middle; }
          .gallery-portfolio .portfolio-container .portfolio-item.item-overlay .portfolio-item-body .portfolio-item-description {
            background-color: rgba(255, 255, 255, 0.95);
            position: absolute;
            bottom: 0;
            padding-top: .75em;
            padding-bottom: 1.2em;
            -moz-transform: translateY(100%);
            -webkit-transform: translateY(100%);
            -o-transform: translateY(100%);
            -ms-transform: translateY(100%);
            transform: translateY(100%); }
        .gallery-portfolio .portfolio-container .portfolio-item.item-overlay:hover .portfolio-item-body {
          background: rgba(255, 255, 255, 0); }
          .gallery-portfolio .portfolio-container .portfolio-item.item-overlay:hover .portfolio-item-body .portfolio-item-title {
            opacity: 0 !important; }
          .gallery-portfolio .portfolio-container .portfolio-item.item-overlay:hover .portfolio-item-body .portfolio-item-description {
            -moz-transform: translateY(0px);
            -webkit-transform: translateY(0px);
            -o-transform: translateY(0px);
            -ms-transform: translateY(0px);
            transform: translateY(0px); }

/**
 * Swiper 4.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2017 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 28, 2017
 */
.swiper-container {
  width: 100%;
  height: 100%;
  position: relative; }

.swiper-slide {
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center; }

.swiper-container,
.swiper-slide {
  height: 520px;
  overflow: hidden; }
  @media only all and (min-width: 75em) {
    .swiper-container,
    .swiper-slide {
      height: 560px; } }
  @media only all and (max-width: 47.938em) {
    .swiper-container .swiper-slide .content-width,
    .swiper-slide .swiper-slide .content-width {
      padding-left: 3em !important;
      padding-right: 3em !important; } }

.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

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

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

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

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

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

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

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

.swiper-invisible-blank-slide {
  visibility: hidden; }

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform; }

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

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

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

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

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

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  padding: 2rem;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all .15s ease-out;
  -moz-transition: all .15s ease-out;
  -ms-transition: all .15s ease-out;
  -o-transition: all .15s ease-out;
  transition: all .15s ease-out;
  -webkit-tap-highlight-color: transparent;
  opacity: .35; }

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 1; }

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

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

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

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

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

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

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

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

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

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: .7rem;
  left: 0;
  width: 100%; }

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33); }

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

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

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

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

/* -- EDIT 13.4.2018 -- */
.swiper-pagination-bullet {
  width: 1.4rem;
  height: 1.4rem;
  margin: 0;
  position: relative;
  border-radius: 50%;
  background: transparent !important; }
  .swiper-pagination-bullet:hover {
    opacity: 1; }
  .swiper-pagination-bullet:after {
    content: ' ';
    display: block;
    position: absolute;
    height: calc(100% - .8rem);
    width: calc(100% - .8rem);
    top: .4rem;
    left: .4rem;
    right: .4rem;
    bottom: .4rem;
    background: #FFFFFF;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }

.swiper-pagination-bullet,
.swiper-pagination-bullet:after {
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out; }

.swiper-pagination-bullet-active:after {
  opacity: 1;
  background: #fdc516; }

.swiper-pagination-bullet:hover:after {
  -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.15); }

.showcase-swiper.page-header .swiper-pagination-bullet:hover:after,
.section_bg-darkgrey .swiper-pagination-bullet:hover:after {
  -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.25); }

.swiper-pagination-bullet-active:hover:after {
  -webkit-box-shadow: 0 0 0 10px rgba(253, 197, 22, 0.5) !important;
  box-shadow: 0 0 0 10px rgba(253, 197, 22, 0.5) !important; }

/* -- EDIT 13.4.2018 -- */
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0); }

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

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform; }

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

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform; }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform; }

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progressbar {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

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

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff; }

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

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000; }

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

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

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

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

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move; }

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite; }

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat; }

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity; }

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

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

.swiper-container-cube {
  overflow: visible; }

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

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

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

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

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

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

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

.swiper-container-flip {
  overflow: visible; }

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

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

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

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

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

.modular {
  position: relative; }
  .modular .showcase:before {
    display: none; }
  .modular .showcase:after {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%); }
  .modular .showcase.showcase-plugin {
    padding-top: 8rem;
    padding-bottom: 0 !important;
    text-align: left;
    overflow: initial !important; }
    .modular .showcase.showcase-plugin .showcase-bg-container {
      overflow: hidden; }
    .modular .showcase.showcase-plugin .content-width {
      position: relative; }
      .modular .showcase.showcase-plugin .content-width:first-child {
        padding-top: 1.8rem; }
    .modular .showcase.showcase-plugin .showcase-content {
      position: relative;
      padding-left: calc(12rem + 2.35rem);
      padding-bottom: 2.35rem;
      max-width: 46em; }
      .modular .showcase.showcase-plugin .showcase-content h1, .modular .showcase.showcase-plugin .showcase-content h2, .modular .showcase.showcase-plugin .showcase-content h3, .modular .showcase.showcase-plugin .showcase-content h4 {
        padding-left: 0;
        padding-right: 0; }
      .modular .showcase.showcase-plugin .showcase-content * {
        margin-top: 0 !important;
        margin-bottom: 0 !important; }
      .modular .showcase.showcase-plugin .showcase-content h1 {
        font-size: 1.2rem;
        margin-bottom: 0;
        padding-bottom: .5em; }
      .modular .showcase.showcase-plugin .showcase-content h2 {
        font-size: 2.4rem; }
      .modular .showcase.showcase-plugin .showcase-content .button-group {
        margin-top: 1.4rem !important; }
    .modular .showcase.showcase-plugin .plugin-thumb-desc {
      position: absolute;
      top: 1rem;
      right: 2.75rem;
      font-size: 12px;
      line-height: 1.1em;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      z-index: 10;
      text-align: right;
      text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15); }
      .modular .showcase.showcase-plugin .plugin-thumb-desc:before {
        content: '\f12e';
        font-family: "FontAwesome";
        position: absolute;
        font-size: 2.2em;
        top: .3em;
        right: -1.25em; }
      .modular .showcase.showcase-plugin .plugin-thumb-desc strong, .modular .showcase.showcase-plugin .plugin-thumb-desc label {
        font-weight: 900;
        display: block; }
    .modular .showcase.showcase-plugin .plugin-thumb-name {
      position: absolute;
      z-index: 10;
      left: 0;
      right: 0;
      bottom: 1.5rem;
      text-align: center;
      padding: 0 1rem;
      font-size: .85rem;
      font-weight: 900;
      line-height: 1.2em;
      text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15); }
    .modular .showcase.showcase-plugin .plugin-thumb {
      position: absolute;
      left: 0;
      bottom: -1.5rem;
      width: 12rem;
      height: 12rem;
      background: #FFF;
      padding: .5rem;
      z-index: 9;
      border-radius: 3px;
      overflow: hidden;
      -webkit-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.07);
      box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.07); }
      .modular .showcase.showcase-plugin .plugin-thumb .plugin-thumb-overlay {
        display: block;
        height: calc(100% - 1rem);
        width: calc(100% - 1rem);
        position: absolute;
        top: .5rem;
        left: .5rem;
        right: .5rem;
        bottom: .5rem;
        background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#40000000',GradientType=0 );
        z-index: 11; }
      .modular .showcase.showcase-plugin .plugin-thumb img {
        width: 100%;
        height: auto;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-size: cover; }
    @media only all and (max-width: 47.938em) {
      .modular .showcase.showcase-plugin {
        padding-top: 3rem !important; }
        .modular .showcase.showcase-plugin .showcase-content {
          padding-left: calc(7.6rem + 1rem);
          padding-bottom: 1.5rem; }
          .modular .showcase.showcase-plugin .showcase-content h1 {
            font-size: 1rem; }
          .modular .showcase.showcase-plugin .showcase-content h2 {
            font-size: 1.6rem; }
        .modular .showcase.showcase-plugin .plugin-thumb {
          width: 7.6rem !important;
          height: 7.6rem !important;
          padding: .35rem; }
        .modular .showcase.showcase-plugin .plugin-thumb-overlay {
          height: calc(100% - .7rem) !important;
          width: calc(100% - .7rem) !important;
          top: 0.35rem !important;
          left: 0.35rem !important;
          right: 0.35rem !important;
          bottom: 0.35rem !important; }
        .modular .showcase.showcase-plugin .plugin-thumb-desc,
        .modular .showcase.showcase-plugin .plugin-thumb-name {
          display: none; } }

.price {
  position: absolute !important;
  bottom: 0;
  right: 0;
  text-align: right;
  line-height: 1.3em;
  font-size: 1em; }
  .price .price-prefix,
  .price .price-currency,
  .price .price-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fdc516; }
  .price .price-currency {
    padding-right: .1em; }
  .price .price-amount {
    position: relative; }
    .price .price-amount sup {
      position: relative;
      left: .15em; }
  .price .price-description {
    display: block; }

@media only all and (max-width: 47.938em) {
  .modular-row.content-swiper.layout-left .showcase-swiper.no-page-header .vertical-align-center,
  .modular-row.content-swiper.layout-left .showcase-swiper.no-page-header .vertical-align-center-content, .modular-row.content-swiper.layout-right .showcase-swiper.no-page-header .vertical-align-center,
  .modular-row.content-swiper.layout-right .showcase-swiper.no-page-header .vertical-align-center-content {
    display: block !important; }
  .modular-row.content-swiper.layout-left .showcase-swiper.no-page-header .grid, .modular-row.content-swiper.layout-right .showcase-swiper.no-page-header .grid {
    flex-direction: row-reverse !important; }
    .modular-row.content-swiper.layout-left .showcase-swiper.no-page-header .grid .col_text, .modular-row.content-swiper.layout-right .showcase-swiper.no-page-header .grid .col_text {
      order: 2; }
  .modular-row.content-swiper.layout-left .showcase-swiper.no-page-header .grid,
  .modular-row.content-swiper.layout-left .showcase-swiper.no-page-header .row, .modular-row.content-swiper.layout-right .showcase-swiper.no-page-header .grid,
  .modular-row.content-swiper.layout-right .showcase-swiper.no-page-header .row {
    text-align: center; } }

.showcase-swiper {
  /* --- Layout alternative: When slider is displayed in content area --- */
  /* --- Settings / Options --- */ }
  .showcase-swiper.fullscreen {
    height: 100vh;
    width: 100%; }
    .showcase-swiper.fullscreen .showcase-bg {
      background-attachment: fixed; }
  .showcase-swiper.page-header {
    overflow: hidden;
    text-align: center;
    background-color: #000;
    margin-top: -5.2rem !important; }
    .showcase-swiper.page-header .swiper-wrapper,
    .showcase-swiper.page-header .swiper-slide {
      background-color: #000; }
    .showcase-swiper.page-header .swiper-slide {
      padding-top: 7rem;
      padding-bottom: 2rem; }
      .showcase-swiper.page-header .swiper-slide.nobuttons {
        padding-top: 9rem !important;
        padding-bottom: 3.65rem !important; }
    .showcase-swiper.page-header .swiper-slide {
      background-color: #000;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      text-align: center;
      color: #FFFFFF; }
      .showcase-swiper.page-header .swiper-slide * {
        position: relative;
        z-index: +2; }
      .showcase-swiper.page-header .swiper-slide:after, .showcase-swiper.page-header .swiper-slide:before {
        content: ' ';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out; }
      .showcase-swiper.page-header .swiper-slide:after {
        z-index: +1; }
      .showcase-swiper.page-header .swiper-slide:before {
        z-index: +2;
        top: initial !important;
        bottom: 0 !important; }
    .showcase-swiper.page-header .showcase-bg-container,
    .showcase-swiper.page-header .showcase-bg {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 0;
      height: 100%;
      width: 100%;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center; }
@-webkit-keyframes showcase-intro {
  0% {
    transform: scale(1.2);
    opacity: 0; }
  100% {
    transform: scale(1);
    opacity: 1; } }
@keyframes showcase-intro {
  0% {
    transform: scale(1.2);
    opacity: 0; }
  100% {
    transform: scale(1);
    opacity: 1; } }
    .showcase-swiper.page-header .showcase-intro,
    .showcase-swiper.page-header .showcase-outro {
      transform-origin: center center;
      -webkit-animation-name: showcase-intro;
      animation-name: showcase-intro;
      -webkit-animation-fill-mode: both;
      animation-fill-mode: both;
      -webkit-animation-timing-function: ease-in-out;
      animation-timing-function: ease-in-out;
      -webkit-animation-delay: .5s;
      animation-duration: .5s;
      -webkit-animation-duration: 4s;
      animation-duration: 4s; }
    .showcase-swiper.page-header .showcase-outro {
      -webkit-animation-direction: reverse;
      animation-direction: reverse; }
    .showcase-swiper.page-header .swiper-wrapper .button-group,
    .showcase-swiper.page-header .swiper-wrapper .slide-headline,
    .showcase-swiper.page-header .swiper-wrapper .slide-subheadline {
      display: none; }
    .showcase-swiper.page-header .swiper-wrapper .showcase-bg {
      opacity: 0; }
    .showcase-swiper.page-header h1,
    .showcase-swiper.page-header h2 {
      margin: 0;
      font-size: 2.8rem;
      padding: 0 1em; }
      @media only all and (min-width: 48em) and (max-width: 59.938em) {
        .showcase-swiper.page-header h1,
        .showcase-swiper.page-header h2 {
          font-size: 2.6rem; } }
      @media only all and (max-width: 47.938em) {
        .showcase-swiper.page-header h1,
        .showcase-swiper.page-header h2 {
          font-size: 2rem;
          padding: 0; } }
    .showcase-swiper.page-header h1 {
      color: #fdc516;
      margin-bottom: 4rem; }
    .showcase-swiper.page-header h1 + h2 {
      margin-top: -4rem;
      margin-bottom: 4rem;
      letter-spacing: -0.02em; }
    .showcase-swiper.page-header h1 + h3,
    .showcase-swiper.page-header h1 + h4 {
      margin-top: -3rem; }
    .showcase-swiper.page-header h3, .showcase-swiper.page-header h4 {
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto; }
    .showcase-swiper.page-header h4 {
      margin-bottom: .5em; }
    .showcase-swiper.page-header h1 a, .showcase-swiper.page-header h2 a, .showcase-swiper.page-header h3 a, .showcase-swiper.page-header h4 a, .showcase-swiper.page-header h5 a, .showcase-swiper.page-header h6 a {
      text-decoration: none;
      color: #FFFFFF !important;
      border-bottom: 1px dotted #FFFFFF !important; }
      .showcase-swiper.page-header h1 a:hover, .showcase-swiper.page-header h2 a:hover, .showcase-swiper.page-header h3 a:hover, .showcase-swiper.page-header h4 a:hover, .showcase-swiper.page-header h5 a:hover, .showcase-swiper.page-header h6 a:hover {
        color: #fdc516 !important;
        border-bottom-color: #fdc516 !important; }
    @media only all and (max-width: 47.938em) {
      .showcase-swiper.page-header h1 + h2 {
        margin-top: -4rem;
        margin-bottom: 2rem !important; } }
    .showcase-swiper.page-header.showcase-static .swiper-slide {
      padding-top: 8rem;
      padding-bottom: 2rem; }
  @media screen and (max-width: 600px) {
    .showcase-swiper.page-header.swiper-container, .showcase-swiper.page-header.swiper-slide {
      height: 340px; }
    .showcase-swiper.page-header .showcase-swiper.swiper-container .swiper-button-prev,
    .showcase-swiper.page-header .showcase-swiper.swiper-container .swiper-button-next {
      width: 13px;
      height: 22px;
      margin-top: -22px;
      background-size: 13px 22px; }
    .showcase-swiper.page-header .swiper-slide {
      padding-top: 5rem !important; }
      .showcase-swiper.page-header .swiper-slide h1, .showcase-swiper.page-header .swiper-slide h2 {
        font-size: 5vw !important; }
      .showcase-swiper.page-header .swiper-slide .button {
        font-size: 2.2vw !important; } }
  .showcase-swiper.no-page-header {
    margin-top: 0 !important;
    height: auto !important;
    padding-bottom: 3.4rem; }
    .showcase-swiper.no-page-header .swiper-slide {
      height: auto !important; }
    .showcase-swiper.no-page-header .vertical-align-center {
      display: table;
      height: 100%;
      width: 100%;
      vertical-align: middle; }
    .showcase-swiper.no-page-header .vertical-align-center-content {
      display: table-cell;
      height: 100%;
      width: 100%;
      vertical-align: middle; }
    .showcase-swiper.no-page-header .swiper-slide {
      padding-left: 5rem;
      padding-right: 5rem; }
      .showcase-swiper.no-page-header .swiper-slide .slide-image {
        width: 100%;
        max-width: 100%;
        height: auto; }
      .showcase-swiper.no-page-header .swiper-slide .slide-headline {
        font-weight: 700; }
      .showcase-swiper.no-page-header .swiper-slide .slide-subheadline {
        font-weight: 300; }
      .showcase-swiper.no-page-header .swiper-slide .slide-headline + .slide-subheadline {
        margin-top: -1.4rem; }
      .showcase-swiper.no-page-header .swiper-slide .slide-content {
        margin-top: -.5rem; }
    .showcase-swiper.no-page-header.hide-navigation .swiper-slide {
      padding-left: 0;
      padding-right: 0; }
    .showcase-swiper.no-page-header .swiper-button-prev,
    .showcase-swiper.no-page-header .swiper-container-rtl .swiper-button-next {
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23111111'%2F%3E%3C%2Fsvg%3E"); }
    .showcase-swiper.no-page-header .swiper-button-next,
    .showcase-swiper.no-page-header .swiper-container-rtl .swiper-button-prev {
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23111111'%2F%3E%3C%2Fsvg%3E"); }
    .showcase-swiper.no-page-header.section_bg-white .swiper-wrapper,
    .showcase-swiper.no-page-header.section_bg-white .swiper-slide {
      background-color: #FFF; }
    .showcase-swiper.no-page-header.section_bg-lightgrey .swiper-wrapper,
    .showcase-swiper.no-page-header.section_bg-lightgrey .swiper-slide {
      background-color: #f6f6f6; }
    .showcase-swiper.no-page-header.section_bg-grey .swiper-wrapper,
    .showcase-swiper.no-page-header.section_bg-grey .swiper-slide {
      background-color: #eee; }
    .showcase-swiper.no-page-header.section_bg-darkgrey .swiper-wrapper,
    .showcase-swiper.no-page-header.section_bg-darkgrey .swiper-slide {
      background-color: #333;
      color: #AAA; }
    .showcase-swiper.no-page-header.section_bg-darkgrey .swiper-button-prev,
    .showcase-swiper.no-page-header.section_bg-darkgrey .swiper-container-rtl .swiper-button-next {
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23999999'%2F%3E%3C%2Fsvg%3E"); }
    .showcase-swiper.no-page-header.section_bg-darkgrey .swiper-button-next,
    .showcase-swiper.no-page-header.section_bg-darkgrey .swiper-container-rtl .swiper-button-prev {
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23999999'%2F%3E%3C%2Fsvg%3E"); }
    .showcase-swiper.no-page-header.section_bg-yellow .swiper-wrapper,
    .showcase-swiper.no-page-header.section_bg-yellow .swiper-slide {
      background-color: #fdc516; }
    .showcase-swiper.no-page-header.section_bg-white .swiper-pagination-bullet:after, .showcase-swiper.no-page-header.section_bg-lightgrey .swiper-pagination-bullet:after, .showcase-swiper.no-page-header.section_bg-grey .swiper-pagination-bullet:after, .showcase-swiper.no-page-header.section_bg-yellow .swiper-pagination-bullet:after {
      background: #333; }
    .showcase-swiper.no-page-header.section_bg-white .swiper-pagination-bullet-active:after, .showcase-swiper.no-page-header.section_bg-lightgrey .swiper-pagination-bullet-active:after, .showcase-swiper.no-page-header.section_bg-grey .swiper-pagination-bullet-active:after, .showcase-swiper.no-page-header.section_bg-yellow .swiper-pagination-bullet-active:after {
      background: #fdc516; }
    .showcase-swiper.no-page-header.section_bg-yellow .swiper-pagination-bullet-active:after {
      background: #FFF; }
  .showcase-swiper.hide-navigation .swiper-button-next,
  .showcase-swiper.hide-navigation .swiper-button-prev {
    display: none; }
  .showcase-swiper.hide-pagination .swiper-pagination {
    display: none; }
  .showcase-swiper.hide-overlay .swiper-slide:after, .showcase-swiper.hide-overlay .swiper-slide:before {
    display: none; }
  .showcase-swiper .swiper-slide.swiper-slide--video--autoplayOff .content-width {
    display: none; }
  .showcase-swiper .video-wrapper {
    position: absolute !important;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    /*
    		display: flex;
    		flex-direction: column;
    		justify-content: center;
    		align-items: center;
    */
    z-index: 1;
    min-height: 100%;
    overflow: hidden;
    height: 100%; }
    .showcase-swiper .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      margin: -1px;
      width: calc(100% + 2px);
      height: calc(100% + 2px);
      max-width: 100%;
      background: none !important; }

.showcase-swiper.showcase-static,
.showcase-swiper.showcase-static .swiper-slide {
  pointer-events: auto !important; }

/*
.showcase-swiper.page-header .swiper-slide .button,
.swiper-container .button,
.swiper-container-fade .swiper-slide .button,
.swiper-container-fade .swiper-slide .swiper-slide .button, {
		pointer-events: auto!important;
	}
	*/
.text-swiper.nopadding {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }
.text-swiper.layout-center {
  text-align: center; }
.text-swiper.layout-left {
  text-align: left; }
.text-swiper.layout-right {
  text-align: right; }
.text-swiper.section_bg-white .swiper-pagination-bullet, .text-swiper.section_bg-lightgrey .swiper-pagination-bullet, .text-swiper.section_bg-grey .swiper-pagination-bullet, .text-swiper.section_bg-yellow .swiper-pagination-bullet {
  background: #333; }
.text-swiper.section_bg-white .swiper-pagination-bullet-active, .text-swiper.section_bg-lightgrey .swiper-pagination-bullet-active, .text-swiper.section_bg-grey .swiper-pagination-bullet-active, .text-swiper.section_bg-yellow .swiper-pagination-bullet-active {
  background: #fdc516; }
.text-swiper.section_bg-yellow .swiper-pagination-bullet-active {
  background: #FFF; }
.text-swiper .swiper-container:before, .text-swiper .swiper-container:after {
  content: ' ';
  height: 100%;
  width: 2rem;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 9; }
.text-swiper .swiper-container:before {
  left: 0; }
.text-swiper .swiper-container:after {
  right: 0; }
.text-swiper.section_bg-white .swiper-container:before {
  background: -moz-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%); }
.text-swiper.section_bg-white .swiper-container:after {
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%); }
.text-swiper.section_bg-lightgrey .swiper-container:before {
  background: -moz-linear-gradient(left, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
  background: -webkit-linear-gradient(left, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
  background: linear-gradient(to right, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%); }
.text-swiper.section_bg-lightgrey .swiper-container:after {
  background: -moz-linear-gradient(left, rgba(246, 246, 246, 0) 0%, #f6f6f6 100%);
  background: -webkit-linear-gradient(left, rgba(246, 246, 246, 0) 0%, #f6f6f6 100%);
  background: linear-gradient(to right, rgba(246, 246, 246, 0) 0%, #f6f6f6 100%); }
.text-swiper.section_bg-grey .swiper-container:before {
  background: -moz-linear-gradient(left, #eeeeee 0%, rgba(238, 238, 238, 0) 100%);
  background: -webkit-linear-gradient(left, #eeeeee 0%, rgba(238, 238, 238, 0) 100%);
  background: linear-gradient(to right, #eeeeee 0%, rgba(238, 238, 238, 0) 100%); }
.text-swiper.section_bg-grey .swiper-container:after {
  background: -moz-linear-gradient(left, rgba(238, 238, 238, 0) 0%, #eeeeee 100%);
  background: -webkit-linear-gradient(left, rgba(238, 238, 238, 0) 0%, #eeeeee 100%);
  background: linear-gradient(to right, rgba(238, 238, 238, 0) 0%, #eeeeee 100%); }
.text-swiper.section_bg-darkgrey .swiper-container:before {
  background: -moz-linear-gradient(left, #333333 0%, rgba(51, 51, 51, 0) 100%);
  background: -webkit-linear-gradient(left, #333333 0%, rgba(51, 51, 51, 0) 100%);
  background: linear-gradient(to right, #333333 0%, rgba(51, 51, 51, 0) 100%); }
.text-swiper.section_bg-darkgrey .swiper-container:after {
  background: -moz-linear-gradient(left, rgba(51, 51, 51, 0) 0%, #333333 100%);
  background: -webkit-linear-gradient(left, rgba(51, 51, 51, 0) 0%, #333333 100%);
  background: linear-gradient(to right, rgba(51, 51, 51, 0) 0%, #333333 100%); }
.text-swiper.section_bg-yellow .swiper-container:before {
  background: -moz-linear-gradient(left, #fdc516 0%, rgba(253, 197, 22, 0) 100%);
  background: -webkit-linear-gradient(left, #fdc516 0%, rgba(253, 197, 22, 0) 100%);
  background: linear-gradient(to right, #fdc516 0%, rgba(253, 197, 22, 0) 100%); }
.text-swiper.section_bg-yellow .swiper-container:after {
  background: -moz-linear-gradient(left, rgba(253, 197, 22, 0) 0%, #fdc516 100%);
  background: -webkit-linear-gradient(left, rgba(253, 197, 22, 0) 0%, #fdc516 100%);
  background: linear-gradient(to right, rgba(253, 197, 22, 0) 0%, #fdc516 100%); }
.text-swiper .swiper-container,
.text-swiper .swiper-wrapper {
  height: auto; }
.text-swiper .swiper-container .swiper-wrapper .swiper-slide {
  padding: 1.5rem 2rem; }
.text-swiper .swiper-container .swiper-button-prev,
.text-swiper .swiper-container .swiper-button-next {
  display: none; }
.text-swiper .swiper-container h1, .text-swiper .swiper-container h2, .text-swiper .swiper-container h3, .text-swiper .swiper-container h4, .text-swiper .swiper-container h5, .text-swiper .swiper-container h6 {
  margin: 0;
  padding: 0; }
.text-swiper .swiper-container .slide-headline,
.text-swiper .swiper-container .slide-subheadline {
  font-size: 1.2rem; }
.text-swiper .swiper-container .slide-headline {
  font-weight: bold; }
.text-swiper .swiper-container .slide-description {
  padding-top: 1rem; }
.text-swiper .swiper-container .swipe-content {
  padding: 0;
  max-width: 560px; }
  .text-swiper .swiper-container .swipe-content .button-group {
    margin-bottom: 2rem; }

.logo-swiper-modular {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  text-align: center; }
  .logo-swiper-modular.fullwidth {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .logo-swiper-modular .swiper-container:before, .logo-swiper-modular .swiper-container:after {
    content: ' ';
    height: 100%;
    width: 2rem;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 9; }
  .logo-swiper-modular .swiper-container:before {
    left: 0; }
  .logo-swiper-modular .swiper-container:after {
    right: 0; }
  .logo-swiper-modular.section_bg-white .swiper-container:before {
    background: -moz-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%); }
  .logo-swiper-modular.section_bg-white .swiper-container:after {
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%); }
  .logo-swiper-modular.section_bg-lightgrey .swiper-container:before {
    background: -moz-linear-gradient(left, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
    background: -webkit-linear-gradient(left, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
    background: linear-gradient(to right, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%); }
  .logo-swiper-modular.section_bg-lightgrey .swiper-container:after {
    background: -moz-linear-gradient(left, rgba(246, 246, 246, 0) 0%, #f6f6f6 100%);
    background: -webkit-linear-gradient(left, rgba(246, 246, 246, 0) 0%, #f6f6f6 100%);
    background: linear-gradient(to right, rgba(246, 246, 246, 0) 0%, #f6f6f6 100%); }
  .logo-swiper-modular.section_bg-grey .swiper-container:before {
    background: -moz-linear-gradient(left, #eeeeee 0%, rgba(238, 238, 238, 0) 100%);
    background: -webkit-linear-gradient(left, #eeeeee 0%, rgba(238, 238, 238, 0) 100%);
    background: linear-gradient(to right, #eeeeee 0%, rgba(238, 238, 238, 0) 100%); }
  .logo-swiper-modular.section_bg-grey .swiper-container:after {
    background: -moz-linear-gradient(left, rgba(238, 238, 238, 0) 0%, #eeeeee 100%);
    background: -webkit-linear-gradient(left, rgba(238, 238, 238, 0) 0%, #eeeeee 100%);
    background: linear-gradient(to right, rgba(238, 238, 238, 0) 0%, #eeeeee 100%); }
  .logo-swiper-modular.section_bg-darkgrey .swiper-container:before {
    background: -moz-linear-gradient(left, #333333 0%, rgba(51, 51, 51, 0) 100%);
    background: -webkit-linear-gradient(left, #333333 0%, rgba(51, 51, 51, 0) 100%);
    background: linear-gradient(to right, #333333 0%, rgba(51, 51, 51, 0) 100%); }
  .logo-swiper-modular.section_bg-darkgrey .swiper-container:after {
    background: -moz-linear-gradient(left, rgba(51, 51, 51, 0) 0%, #333333 100%);
    background: -webkit-linear-gradient(left, rgba(51, 51, 51, 0) 0%, #333333 100%);
    background: linear-gradient(to right, rgba(51, 51, 51, 0) 0%, #333333 100%); }
  .logo-swiper-modular.section_bg-yellow .swiper-container:before {
    background: -moz-linear-gradient(left, #fdc516 0%, rgba(253, 197, 22, 0) 100%);
    background: -webkit-linear-gradient(left, #fdc516 0%, rgba(253, 197, 22, 0) 100%);
    background: linear-gradient(to right, #fdc516 0%, rgba(253, 197, 22, 0) 100%); }
  .logo-swiper-modular.section_bg-yellow .swiper-container:after {
    background: -moz-linear-gradient(left, rgba(253, 197, 22, 0) 0%, #fdc516 100%);
    background: -webkit-linear-gradient(left, rgba(253, 197, 22, 0) 0%, #fdc516 100%);
    background: linear-gradient(to right, rgba(253, 197, 22, 0) 0%, #fdc516 100%); }
  .logo-swiper-modular .swiper-container,
  .logo-swiper-modular .swiper-slide,
  .logo-swiper-modular .logo-thumb {
    height: auto;
    overflow: hidden; }
  .logo-swiper-modular .swiper-slide {
    width: auto;
    padding: 0 !important; }
  .logo-swiper-modular .logo-thumb {
    width: 100%;
    height: auto;
    max-height: 6rem;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain !important; }
  @media (max-width: 1260px) {
    .logo-swiper-modular .swiper-slide {
      width: 16.66%; } }
  @media (min-width: 1261px) {
    .logo-swiper-modular .swiper-slide {
      width: 12.5%; } }
  @media (max-width: 1024px) {
    .logo-swiper-modular .swiper-slide {
      width: 25%; }
    .logo-swiper-modular .logo-thumb {
      height: auto; } }
  @media (max-width: 768px) {
    .logo-swiper-modular .swiper-slide {
      width: 25%; }
    .logo-swiper-modular .logo-thumb {
      height: auto; } }
  @media (max-width: 500px) {
    .logo-swiper-modular .swiper-slide {
      width: 33.33%; }
    .logo-swiper-modular .logo-thumb {
      height: 4rem; } }

.plugin-swiper-modular {
  border-top: none !important;
  padding-top: 1rem !important;
  padding-bottom: 4rem !important;
  text-align: center;
  /*
  	@media (max-width: 1260px) {
  		.swiper-slide {
  			width: 16.66%;
  		}
  	}
  
  	@media (min-width: 1261px) {
  		.swiper-slide {
  			width: 12.5%;
  		}
  	}
  
  	@media (max-width: 1024px) {
  		.swiper-slide {
  			width: 25%;
  		}
  		.logo-thumb {
  			height: auto;
  		}
  	}
  
  	@media (max-width: 768px) {
  		.swiper-slide {
  			width: 25%;
  		}
  		.logo-thumb {
  			height: auto;
  		}
  	}
  
  	@media (max-width: 500px) {
  		.swiper-slide {
  			width: 33.33%;
  		}
  		.logo-thumb {
  			height: 4rem;
  		}
  	}
  */ }
  .plugin-swiper-modular.fullwidth {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .plugin-swiper-modular .plugin-swiper {
    padding-bottom: 2rem; }
  .plugin-swiper-modular a.plugin-thumb,
  .plugin-swiper-modular .plugin-thumb {
    display: inline-block;
    position: relative;
    width: 160px;
    height: 160px;
    margin: .5rem;
    color: #FFF !important;
    border: 0.25rem solid #FFF !important;
    background: #FFF;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    transition: all 250ms; }
    .plugin-swiper-modular a.plugin-thumb:hover, .plugin-swiper-modular a.plugin-thumb:active,
    .plugin-swiper-modular .plugin-thumb:hover,
    .plugin-swiper-modular .plugin-thumb:active {
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
      -webkit-transform: translateY(-5px);
      -moz-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
      -o-transform: translateY(-5px);
      transform: translateY(-5px); }
    .plugin-swiper-modular a.plugin-thumb .plugin-thumb-name,
    .plugin-swiper-modular .plugin-thumb .plugin-thumb-name {
      -webkit-transition: all 250ms;
      -moz-transition: all 250ms;
      transition: all 250ms; }
    .plugin-swiper-modular a.plugin-thumb .plugin-thumb-desc,
    .plugin-swiper-modular .plugin-thumb .plugin-thumb-desc {
      position: absolute;
      top: 1em;
      right: 4em;
      font-size: 8px;
      line-height: 1.1em;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      z-index: 10;
      text-align: right; }
      .plugin-swiper-modular a.plugin-thumb .plugin-thumb-desc:before,
      .plugin-swiper-modular .plugin-thumb .plugin-thumb-desc:before {
        content: '\f12e';
        font-family: "FontAwesome";
        position: absolute;
        font-size: 2.2em;
        top: .3em;
        right: -1.25em; }
      .plugin-swiper-modular a.plugin-thumb .plugin-thumb-desc strong, .plugin-swiper-modular a.plugin-thumb .plugin-thumb-desc label,
      .plugin-swiper-modular .plugin-thumb .plugin-thumb-desc strong,
      .plugin-swiper-modular .plugin-thumb .plugin-thumb-desc label {
        font-weight: 900;
        display: block; }
    .plugin-swiper-modular a.plugin-thumb .plugin-thumb-name,
    .plugin-swiper-modular .plugin-thumb .plugin-thumb-name {
      position: absolute;
      z-index: 10;
      left: 0;
      right: 0;
      bottom: 1em;
      text-align: center;
      padding: 0 .5rem;
      font-size: .65rem;
      font-weight: 900;
      line-height: 1.2em;
      opacity: 1; }
  .plugin-swiper-modular .logo-thumb {
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover; }

.testimonial-slider {
  position: relative;
  /* --- Gradients Aside --- */
  /* --- Buttons Next / Prev --- */
  /* --- Themeing --- */ }
  @media screen and (max-width: 600px) {
    .testimonial-slider .swiper-container,
    .testimonial-slider .swiper-wrapper,
    .testimonial-slider .swiper-slide {
      height: auto !important; } }
  .testimonial-slider.hide-bg-image:before {
    display: none; }
  .testimonial-slider:before {
    content: ' ';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .1;
    background-repeat: no-repeat;
    background-position: 50% 55%;
    background-size: calc(60% - 4rem);
    background-image: url("../images/world-map-dot-matrix.svg"); }
    @media only all and (min-width: 75em) {
      .testimonial-slider:before {
        background-position: 50% 60%;
        background-size: 520px; } }
    @media only all and (max-width: 30em) {
      .testimonial-slider:before {
        background-position: 50% 40%;
        background-size: calc(100% - 4rem); } }
  .testimonial-slider.section_bg-darkgrey:before {
    opacity: .65; }
  .testimonial-slider .swiper-container:before, .testimonial-slider .swiper-container:after {
    content: ' ';
    height: 100%;
    width: 2rem;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 9; }
  .testimonial-slider .swiper-container:before {
    left: 0; }
  .testimonial-slider .swiper-container:after {
    right: 0; }
  .testimonial-slider.section_bg-white .swiper-container:before {
    background: -moz-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%); }
  .testimonial-slider.section_bg-white .swiper-container:after {
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%); }
  .testimonial-slider.section_bg-lightgrey .swiper-container:before {
    background: -moz-linear-gradient(left, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
    background: -webkit-linear-gradient(left, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
    background: linear-gradient(to right, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%); }
  .testimonial-slider.section_bg-lightgrey .swiper-container:after {
    background: -moz-linear-gradient(left, rgba(246, 246, 246, 0) 0%, #f6f6f6 100%);
    background: -webkit-linear-gradient(left, rgba(246, 246, 246, 0) 0%, #f6f6f6 100%);
    background: linear-gradient(to right, rgba(246, 246, 246, 0) 0%, #f6f6f6 100%); }
  .testimonial-slider.section_bg-grey .swiper-container:before {
    background: -moz-linear-gradient(left, #eeeeee 0%, rgba(238, 238, 238, 0) 100%);
    background: -webkit-linear-gradient(left, #eeeeee 0%, rgba(238, 238, 238, 0) 100%);
    background: linear-gradient(to right, #eeeeee 0%, rgba(238, 238, 238, 0) 100%); }
  .testimonial-slider.section_bg-grey .swiper-container:after {
    background: -moz-linear-gradient(left, rgba(238, 238, 238, 0) 0%, #eeeeee 100%);
    background: -webkit-linear-gradient(left, rgba(238, 238, 238, 0) 0%, #eeeeee 100%);
    background: linear-gradient(to right, rgba(238, 238, 238, 0) 0%, #eeeeee 100%); }
  .testimonial-slider.section_bg-darkgrey .swiper-container:before {
    background: -moz-linear-gradient(left, #333333 0%, rgba(51, 51, 51, 0) 100%);
    background: -webkit-linear-gradient(left, #333333 0%, rgba(51, 51, 51, 0) 100%);
    background: linear-gradient(to right, #333333 0%, rgba(51, 51, 51, 0) 100%); }
  .testimonial-slider.section_bg-darkgrey .swiper-container:after {
    background: -moz-linear-gradient(left, rgba(51, 51, 51, 0) 0%, #333333 100%);
    background: -webkit-linear-gradient(left, rgba(51, 51, 51, 0) 0%, #333333 100%);
    background: linear-gradient(to right, rgba(51, 51, 51, 0) 0%, #333333 100%); }
  .testimonial-slider.section_bg-yellow .swiper-container:before {
    background: -moz-linear-gradient(left, #fdc516 0%, rgba(253, 197, 22, 0) 100%);
    background: -webkit-linear-gradient(left, #fdc516 0%, rgba(253, 197, 22, 0) 100%);
    background: linear-gradient(to right, #fdc516 0%, rgba(253, 197, 22, 0) 100%); }
  .testimonial-slider.section_bg-yellow .swiper-container:after {
    background: -moz-linear-gradient(left, rgba(253, 197, 22, 0) 0%, #fdc516 100%);
    background: -webkit-linear-gradient(left, rgba(253, 197, 22, 0) 0%, #fdc516 100%);
    background: linear-gradient(to right, rgba(253, 197, 22, 0) 0%, #fdc516 100%); }
  .testimonial-slider .swiper-button-prev,
  .testimonial-slider .swiper-button-next {
    margin-top: -44px; }
  .testimonial-slider .swiper-button-prev,
  .testimonial-slider .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23111111'%2F%3E%3C%2Fsvg%3E"); }
  .testimonial-slider .swiper-button-next,
  .testimonial-slider .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23111111'%2F%3E%3C%2Fsvg%3E"); }
  .testimonial-slider.section_bg-darkgrey .swiper-button-prev,
  .testimonial-slider.section_bg-darkgrey .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23999999'%2F%3E%3C%2Fsvg%3E"); }
  .testimonial-slider.section_bg-darkgrey .swiper-button-next,
  .testimonial-slider.section_bg-darkgrey .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23999999'%2F%3E%3C%2Fsvg%3E"); }
  .testimonial-slider.section_bg-white .swiper-button-prev,
  .testimonial-slider.section_bg-white .swiper-button-next, .testimonial-slider.section_bg-lightgrey .swiper-button-prev,
  .testimonial-slider.section_bg-lightgrey .swiper-button-next {
    opacity: .15; }
  .testimonial-slider.section_bg-white .swiper-button-prev:hover,
  .testimonial-slider.section_bg-white .swiper-button-next:hover, .testimonial-slider.section_bg-lightgrey .swiper-button-prev:hover,
  .testimonial-slider.section_bg-lightgrey .swiper-button-next:hover {
    opacity: .35; }
  .testimonial-slider.section_bg-white .swiper-pagination-bullet:after, .testimonial-slider.section_bg-lightgrey .swiper-pagination-bullet:after, .testimonial-slider.section_bg-grey .swiper-pagination-bullet:after, .testimonial-slider.section_bg-yellow .swiper-pagination-bullet:after {
    background: #333; }
  .testimonial-slider.section_bg-white .swiper-pagination-bullet-active:after, .testimonial-slider.section_bg-lightgrey .swiper-pagination-bullet-active:after, .testimonial-slider.section_bg-grey .swiper-pagination-bullet-active:after, .testimonial-slider.section_bg-yellow .swiper-pagination-bullet-active:after {
    background: #fdc516; }
  .testimonial-slider.section_bg-yellow .swiper-pagination-bullet-active:after {
    background: #FFF; }
  .testimonial-slider .swiper-slide {
    text-align: center;
    padding: 1rem 0 4rem 0; }
    @media only all and (max-width: 47.938em) {
      .testimonial-slider .swiper-slide {
        padding: 0 0 3.4rem 0 !important; } }
  .testimonial-slider .testimonial-item {
    padding: 0 3rem;
    max-width: 600px; }
    @media only all and (max-width: 47.938em) {
      .testimonial-slider .testimonial-item {
        padding: 0 2.5rem; } }
    @media only all and (max-width: 30em) {
      .testimonial-slider .testimonial-item {
        padding: 0 2rem; } }
    .testimonial-slider .testimonial-item .testimonial--quote,
    .testimonial-slider .testimonial-item .testimonial--meta {
      display: block;
      margin: 0 auto;
      padding: 0 1rem 1.7rem 1rem;
      width: 100%; }
    .testimonial-slider .testimonial-item .testimonial--quote {
      font-size: 1.2rem; }
    .testimonial-slider .testimonial-item .testimonial--meta {
      padding-bottom: 0;
      font-size: .8rem;
      line-height: 1.5em;
      margin: 0 auto;
      color: inherit;
      max-width: 24em; }
      .testimonial-slider .testimonial-item .testimonial--meta a {
        color: inherit !important; }
      .testimonial-slider .testimonial-item .testimonial--meta .testimonial--name,
      .testimonial-slider .testimonial-item .testimonial--meta .testimonial--position,
      .testimonial-slider .testimonial-item .testimonial--meta .testimonial--company {
        color: inherit; }
      .testimonial-slider .testimonial-item .testimonial--meta .testimonial--company {
        padding-top: .35em;
        display: block;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.3em;
        text-transform: uppercase;
        letter-spacing: 0.05em; }
    .testimonial-slider .testimonial-item:hover .testimonial--image img {
      -moz-transform: scale(1);
      -webkit-transform: scale(1);
      -o-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1); }
  .testimonial-slider .button-group {
    margin-top: 1.7rem; }
  .testimonial-slider .testimonial--image {
    display: inline-block;
    margin: 0 auto;
    margin-bottom: 1.7rem;
    border: 0.5em solid rgba(0, 0, 0, 0.1);
    width: 9rem;
    height: 9rem;
    overflow: hidden; }
    .testimonial-slider .testimonial--image img {
      height: 100%;
      width: 100%;
      background-color: #FFF;
      background-repeat: no-repeat;
      background-size: cover;
      -moz-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      -o-transform: scale(1.1);
      -ms-transform: scale(1.1);
      transform: scale(1.1); }
  .testimonial-slider .testimonial--image,
  .testimonial-slider .testimonial--image img {
    border-radius: 50%; }
  .testimonial-slider .testimonial-item.image-left .testimonial--image {
    margin: 0 1.7rem 0 0 !important; }
  .testimonial-slider .testimonial-item.image-left .testimonial--image,
  .testimonial-slider .testimonial-item.image-left .testimonial-item--content {
    display: block;
    float: left; }
  .testimonial-slider .testimonial-item.image-left .testimonial-item--content {
    width: calc(100% - 9rem - 1.7rem); }
  .testimonial-slider .testimonial-item.image-left .testimonial--quote,
  .testimonial-slider .testimonial-item.image-left .testimonial--meta {
    text-align: left;
    max-width: none; }
  .testimonial-slider .showcase-static .testimonial--quote,
  .testimonial-slider .showcase-static .testimonial--meta {
    padding-left: 0;
    padding-right: 0; }
  .testimonial-slider .showcase-static .swiper-slide {
    padding: 0;
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto; }
    @media only all and (max-width: 47.938em) {
      .testimonial-slider .showcase-static .swiper-slide {
        padding: 0 !important; } }
  .testimonial-slider .showcase-static .testimonial-item {
    padding: 0;
    max-width: none !important; }

/* --- */
.testimonial--quote:before, .testimonial--quote:after {
  display: inline; }

html[lang=de] .testimonial--quote:before {
  content: '„'; }
html[lang=de] .testimonial--quote:after {
  content: '“'; }

html[lang=en] .testimonial--quote:before,
html[lang=en-us] .testimonial--quote:before {
  content: '“'; }
html[lang=en] .testimonial--quote:after,
html[lang=en-us] .testimonial--quote:after {
  content: '”'; }

html[lang=fr] .testimonial--quote:before,
html[lang=es] .testimonial--quote:before,
html[lang=pt] .testimonial--quote:before,
html[lang=it] .testimonial--quote:before {
  content: '«'; }
html[lang=fr] .testimonial--quote:after,
html[lang=es] .testimonial--quote:after,
html[lang=pt] .testimonial--quote:after,
html[lang=it] .testimonial--quote:after {
  content: '»'; }

html[lang=ru] .testimonial--quote:before,
html[lang=zh] .testimonial--quote:before {
  content: '"'; }
html[lang=ru] .testimonial--quote:after,
html[lang=zh] .testimonial--quote:after {
  content: '"'; }

.login.showcase {
  background-color: #FFF !important; }
.login .form--container {
  position: relative;
  max-width: 440px;
  margin-bottom: 0;
  border-radius: 2px;
  background: #FFF;
  border: none; }
  .login .form--container:after {
    content: ' ';
    position: absolute;
    top: -.5rem;
    left: -.5rem;
    right: -.5rem;
    bottom: -.5rem;
    height: calc(100% + 1rem);
    width: calc(100% + 1rem);
    border-radius: 6px;
    border: 0.5rem solid rgba(0, 0, 0, 0.07); }
  .login .form--container h4 {
    font-size: 1rem;
    margin: 0;
    padding: 0;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: table-cell;
    width: 60%;
    color: #444 !important; }
.login .showcase-bg {
  background-attachment: fixed; }

.login-footer {
  background: #FFF;
  padding: 2rem 0;
  position: relative;
  z-index: 1; }

@media only all and (max-width: 47.938em) {
  .login.modular-row.showcase {
    padding-top: 5rem !important; } }
.modular .modular-row:last-child, .modular:not(.modular-row.fullwidth_background) {
  margin-bottom: 0; }

.modular .modular-row .modular-row {
  margin: 0;
  padding: 0;
  border: none !important; }

.layout-center .content-width-limited p {
  max-width: 30em;
  margin-left: auto;
  margin-right: auto; }

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