@charset "UTF-8";
/*
Theme Name: Flexer
Author: Asema 10
Description: Flexer - Multipurpose Premium WordPress Theme
Author URI: http://asema10.fi
License: GNU General Public License version 3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Version: 1.0.0
*/
/* ------------------------------------
   Eric Meyer's Reset CSS v2.0
------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

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

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* ------------------------------------
   HELPERS
------------------------------------- */
.flexer-reset-btn {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
}

/* PATHS */
/* Globals */
/* FONTS */
/* COLORS */
/* PHOSPHOR ICONS */
/* SOCIAL ICONS */
/* Clearfix,  @include clearfix(); */
/* Display Flex, @include display-flex(); */
/* Flex wrap, @include flex-wrap(); */
/* Mask, @include mask( images/svg/icons/home.svg ); */
/* Mask Size, @include mask-size( cover ); */
/* Opacity,  @include opacity(0); */
/* Aspect Ratio

	USAGE:

	<div class="size-16-9">
  		<div></div>
	</div>

	.size-16-9 { @include aspect-ratio(16, 9); }

*/
/* Box sizing, @include box-sizing(border-box); */
/* Blur, @include blur( 5px ); */
/* Gradient, @include gradient( 145deg, $flexer-dark, $flexer-extra-dark ); */
/* Gradient, @include gradient-halfway( 145deg, $flexer-dark, $flexer-extra-dark ); */
/* Gradient, @include gradientDiagonal( left, top, red, yellow ); */
/* Transition,  @include transition(all, 0.2s, ease-in-out); */
/* Transition with Cubic-bezier, @include transitionCubicBezier( all, 0.750s, 0.215, 0.61, 0.355, 1 ); */
/* Transform NONE, @include transform-none(); */
/* Translate 3D, @include translate3D( -400px, 0, 0 ); */
/* Calc, @include calc( width, '100% - 2px'); */
/* Calc, @include calcImportant( width, '100% - 2px'); */
/* Border radius, @include border-radius(10px); */
/* Border radius special, @include border-radius-special( 10px, 0, 10px, 0 ); */
/* Background-size,  @include background-size(cover); */
/* Scale,  @include scale(1.1, 1.1); */
/* Rotate,  @include rotate( 45deg, 50%, 50%); */
/* Translate(X), @include translateX(-50%); */
/* Translate(Y), @include translateY(-50%); */
/* Translate(Z), @include translateZ(0); */
/* Box Shadow, @include box-shadow(); */
/* Box Shadow Custom, @include box-shadow-custom( 0, 0, 20px, 0, rgba( 0, 0, 0, 0.2 ) ); */
/* Box shadow (inset), @include box-shadow-inset-brand(); */
/* Box shadow (inset), @include box-shadow-inset-brand-secondary(); */
/* Box shadow (inset), @include box-shadow-inset-error(); */
/* User select, @include user-select(none); */
/* -------------------------------------------------------
   CLEARING
------------------------------------------------------- */
/* Clear section-wrapper */
.flexer-section-wrapper:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* Use clearfix class on parent to clear nested columns */
.flexer-clearfix:before, .flexer-clearfix:after {
  content: " ";
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.flexer-clearfix:after {
  clear: both;
}

/* Clear columns <br class="flexer-clear" /> */
.flexer-clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

/* ------------------------------------
   KEYFRAMES
------------------------------------- */
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1.11, 1.11);
    -moz-transform: scale(1.11, 1.11);
    -ms-transform: scale(1.11, 1.11);
    -o-transform: scale(1.11, 1.11);
    transform: scale(1.11, 1.11);
  }
  20% {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-3px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(3px, 0, 0);
  }
}
@keyframes hero-arrow-stretch {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    -o-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  4% {
    -webkit-transform: translate3d(-50%, 10%, 0);
    -moz-transform: translate3d(-50%, 10%, 0);
    -ms-transform: translate3d(-50%, 10%, 0);
    -o-transform: translate3d(-50%, 10%, 0);
    transform: translate3d(-50%, 10%, 0);
  }
  8% {
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    -o-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  12% {
    -webkit-transform: translate3d(-50%, 10%, 0);
    -moz-transform: translate3d(-50%, 10%, 0);
    -ms-transform: translate3d(-50%, 10%, 0);
    -o-transform: translate3d(-50%, 10%, 0);
    transform: translate3d(-50%, 10%, 0);
  }
  16% {
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    -o-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0%, 0);
    -moz-transform: translate3d(-50%, 0%, 0);
    -ms-transform: translate3d(-50%, 0%, 0);
    -o-transform: translate3d(-50%, 0%, 0);
    transform: translate3d(-50%, 0%, 0);
  }
}
/* ------------------------------------
   Icons
------------------------------------- */
/*

USAGE:

:before { 
	@extend .flexer-icon;
	@include mask( $icon-path-XXX ); // AINOA PAKOLLINEN MÄÄRITYS, yliaja muut jos tarpeen
	background-color: $flexer-dark; // VALINNAINEN, aseta iconin väri, oletuksena $color-dark
}

*/
.flexer-icon, #Footer div.footer-heading-content ul:not(.menu):not(.sub-menu) li:before, #Footer div.footer-heading-content h5 a:before, #Footer .flexer-bottom-bar .social a:before, #Header #Header-tools #Nav-toggle i.theme-icon:before,
#Header #Header-tools #Nav-closer i.theme-icon:before, #Header a.cpt-closer:before, #Flexer-contact-form-popup .mfp-close:before, .range-selector + .range-selector-wrapper .validator-hint.valid #checkmark:before, .flexer-contact-form-wrapper form#Flexer-contact-form div.item span.icon:before, body.single-blog-cpt #Content div.flexer-blog-post-paragraph ul li:before,
body.single-campaigns-cpt #Content div.flexer-blog-post-paragraph ul li:before, .flexer-accordion-menu .item-dropdown .heading h4 span.icon:before,
.flexer-accordion-menu .item-magnific .heading h4 span.icon:before, .flexer-youtube-video.modal span.icon:before, #Flexer-contact-form-popup form.flexer-contact-form button.submit span.icon:before, #Flexer-contact-form-popup form.flexer-contact-form div.item .captcha-container .object.active:before, .flexer-btn.icon-right i.icon.paper-plane:before, .flexer-btn.icon-right i.icon.envelope:before, .flexer-btn.icon-right i.icon.arrow-right:before, .rg-section:not(.footer) .rg-col ul li:before,
.flexer-magnific-popup ul li:before,
.flexer-staff-popup-content ul li:before,
.flexer-tabs ul li:before,
div.cpt-content ul li:before,
div.template-simple-content ul li:before,
div.flexer-accordion-menu ul li:before {
  content: " ";
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  width: 36px;
  height: 36px;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #000000;
}

i.theme-icon, span.theme-icon, .theme-icon {
  position: relative;
  display: inline-block;
  align-self: center;
  width: 26px;
  height: 26px;
}
i.theme-icon:before, span.theme-icon:before, .theme-icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #000000;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
i.theme-icon.brand::before, span.theme-icon.brand::before, .theme-icon.brand::before {
  background-color: #d03628;
}
i.theme-icon.icons-calendar-plus--18::before, span.theme-icon.icons-calendar-plus--18::before, .theme-icon.icons-calendar-plus--18::before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-calendar-plus.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-calendar-plus.svg) no-repeat 50% 50%;
}
i.theme-icon.icons-hamburger-28::before, span.theme-icon.icons-hamburger-28::before, .theme-icon.icons-hamburger-28::before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-hamburger.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-hamburger.svg) no-repeat 50% 50%;
}
i.theme-icon.icons-close-28::before, span.theme-icon.icons-close-28::before, .theme-icon.icons-close-28::before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-close.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-close.svg) no-repeat 50% 50%;
}
i.theme-icon.icons-phone-24::before, span.theme-icon.icons-phone-24::before, .theme-icon.icons-phone-24::before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-phone.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-phone.svg) no-repeat 50% 50%;
}
i.theme-icon.icons-phone-20::before, span.theme-icon.icons-phone-20::before, .theme-icon.icons-phone-20::before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-phone.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-phone.svg) no-repeat 50% 50%;
}
i.theme-icon.icons-minus-18::before, span.theme-icon.icons-minus-18::before, .theme-icon.icons-minus-18::before {
  -webkit-mask: url(images/theme-icons/icons-minus-18.svg) no-repeat 50% 50%;
  mask: url(images/theme-icons/icons-minus-18.svg) no-repeat 50% 50%;
}
i.theme-icon.icons-plus-18::before, span.theme-icon.icons-plus-18::before, .theme-icon.icons-plus-18::before {
  -webkit-mask: url(images/theme-icons/icons-plus-18.svg) no-repeat 50% 50%;
  mask: url(images/theme-icons/icons-plus-18.svg) no-repeat 50% 50%;
}
i.theme-icon.icons-arrow-right-18::before, span.theme-icon.icons-arrow-right-18::before, .theme-icon.icons-arrow-right-18::before {
  -webkit-mask: url(images/theme-icons/icons-arrow-right-18.svg) no-repeat 50% 50%;
  mask: url(images/theme-icons/icons-arrow-right-18.svg) no-repeat 50% 50%;
}
i.theme-icon.icons-arrow-right-24::before, span.theme-icon.icons-arrow-right-24::before, .theme-icon.icons-arrow-right-24::before {
  -webkit-mask: url(images/theme-icons/icons-arrow-right-24.svg) no-repeat 50% 50%;
  mask: url(images/theme-icons/icons-arrow-right-24.svg) no-repeat 50% 50%;
}
i.theme-icon.icons-envelope-18::before, span.theme-icon.icons-envelope-18::before, .theme-icon.icons-envelope-18::before {
  -webkit-mask: url(images/theme-icons/icons-envelope-18.svg) no-repeat 50% 50%;
  mask: url(images/theme-icons/icons-envelope-18.svg) no-repeat 50% 50%;
}
i.theme-icon.icons-paper-plane-20::before, span.theme-icon.icons-paper-plane-20::before, .theme-icon.icons-paper-plane-20::before {
  -webkit-mask: url(images/theme-icons/icons-paper-plane-20.svg) no-repeat 50% 50%;
  mask: url(images/theme-icons/icons-paper-plane-20.svg) no-repeat 50% 50%;
}
i.theme-icon.icons-location-20::before, span.theme-icon.icons-location-20::before, .theme-icon.icons-location-20::before {
  -webkit-mask: url(images/theme-icons/icons-location-20.svg) no-repeat 50% 50%;
  mask: url(images/theme-icons/icons-location-20.svg) no-repeat 50% 50%;
}
i.theme-icon.icons-check-24::before, span.theme-icon.icons-check-24::before, .theme-icon.icons-check-24::before {
  -webkit-mask: url(images/theme-icons/icons-check-24.svg) no-repeat 50% 50%;
  mask: url(images/theme-icons/icons-check-24.svg) no-repeat 50% 50%;
}
i.theme-icon.icons-caret-down-24::before, span.theme-icon.icons-caret-down-24::before, .theme-icon.icons-caret-down-24::before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-caret-down.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-caret-down.svg) no-repeat 50% 50%;
}
i.theme-icon.icons-facebook::before, span.theme-icon.icons-facebook::before, .theme-icon.icons-facebook::before {
  -webkit-mask: url(images/theme-icons/icons-facebook.svg) no-repeat 50% 50%;
  mask: url(images/theme-icons/icons-facebook.svg) no-repeat 50% 50%;
}
i.theme-icon.icons-instagram::before, span.theme-icon.icons-instagram::before, .theme-icon.icons-instagram::before {
  -webkit-mask: url(images/theme-icons/icons-instagram.svg) no-repeat 50% 50%;
  mask: url(images/theme-icons/icons-instagram.svg) no-repeat 50% 50%;
}
i.theme-icon.icons-twitter::before, span.theme-icon.icons-twitter::before, .theme-icon.icons-twitter::before {
  -webkit-mask: url(images/theme-icons/icons-twitter.svg) no-repeat 50% 50%;
  mask: url(images/theme-icons/icons-twitter.svg) no-repeat 50% 50%;
}
i.theme-icon.icons-youtube::before, span.theme-icon.icons-youtube::before, .theme-icon.icons-youtube::before {
  -webkit-mask: url(images/theme-icons/icons-youtube.svg) no-repeat 50% 50%;
  mask: url(images/theme-icons/icons-youtube.svg) no-repeat 50% 50%;
}

/* -------------------------------------------------------
   PLUGINS
------------------------------------------------------- */
/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100% !important;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}
.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.4;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -50px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 6px;
  background: transparent;
  border: 1px solid #000000;
  border-radius: 999px;
  opacity: 1;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  background: #000000;
  border: 1px solid #000000;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
  opacity: 1;
}

.flickity-prev-next-button {
  display: none !important;
  top: unset;
  bottom: 0;
  background-color: #d03628;
  width: 60px;
  height: 60px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.flickity-prev-next-button:hover {
  background-color: #d03628;
  -webkit-box-shadow: 0 0 30px 0 rgba(208, 54, 40, 0.5);
  -moz-box-shadow: 0 0 30px 0 rgba(208, 54, 40, 0.5);
  box-shadow: 0 0 30px 0 rgba(208, 54, 40, 0.5);
}

.flickity-prev-next-button.previous {
  right: 60px;
}
@media only screen and (max-width: 1239px) {
  .flickity-prev-next-button.previous {
    top: unset;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate3d(-68px, 30px, 0);
    -moz-transform: translate3d(-68px, 30px, 0);
    -ms-transform: translate3d(-68px, 30px, 0);
    -o-transform: translate3d(-68px, 30px, 0);
    transform: translate3d(-68px, 30px, 0);
  }
}

.flickity-prev-next-button.next {
  right: 0px;
}
@media only screen and (max-width: 1239px) {
  .flickity-prev-next-button.next {
    top: unset;
    bottom: 0;
    right: 50%;
    -webkit-transform: translate3d(68px, 30px, 0);
    -moz-transform: translate3d(68px, 30px, 0);
    -ms-transform: translate3d(68px, 30px, 0);
    -o-transform: translate3d(68px, 30px, 0);
    transform: translate3d(68px, 30px, 0);
  }
}

.flickity-prev-next-button .flickity-button-icon {
  left: 32%;
  top: 32%;
  width: 36%;
  height: 36%;
}
.flickity-prev-next-button .flickity-button-icon path {
  color: #ffffff;
}

body[data-aos-duration="50"] [data-aos], [data-aos][data-aos][data-aos-duration="50"] {
  transition-duration: 50ms;
}
body[data-aos-delay="50"] [data-aos], [data-aos][data-aos][data-aos-delay="50"] {
  transition-delay: 0;
}
body[data-aos-delay="50"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="50"].aos-animate {
  transition-delay: 50ms;
}
body[data-aos-duration="100"] [data-aos], [data-aos][data-aos][data-aos-duration="100"] {
  transition-duration: 100ms;
}
body[data-aos-delay="100"] [data-aos], [data-aos][data-aos][data-aos-delay="100"] {
  transition-delay: 0;
}
body[data-aos-delay="100"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="100"].aos-animate {
  transition-delay: 100ms;
}
body[data-aos-duration="150"] [data-aos], [data-aos][data-aos][data-aos-duration="150"] {
  transition-duration: 150ms;
}
body[data-aos-delay="150"] [data-aos], [data-aos][data-aos][data-aos-delay="150"] {
  transition-delay: 0;
}
body[data-aos-delay="150"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="150"].aos-animate {
  transition-delay: 150ms;
}
body[data-aos-duration="200"] [data-aos], [data-aos][data-aos][data-aos-duration="200"] {
  transition-duration: 200ms;
}
body[data-aos-delay="200"] [data-aos], [data-aos][data-aos][data-aos-delay="200"] {
  transition-delay: 0;
}
body[data-aos-delay="200"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="200"].aos-animate {
  transition-delay: 200ms;
}
body[data-aos-duration="250"] [data-aos], [data-aos][data-aos][data-aos-duration="250"] {
  transition-duration: 250ms;
}
body[data-aos-delay="250"] [data-aos], [data-aos][data-aos][data-aos-delay="250"] {
  transition-delay: 0;
}
body[data-aos-delay="250"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="250"].aos-animate {
  transition-delay: 250ms;
}
body[data-aos-duration="300"] [data-aos], [data-aos][data-aos][data-aos-duration="300"] {
  transition-duration: 300ms;
}
body[data-aos-delay="300"] [data-aos], [data-aos][data-aos][data-aos-delay="300"] {
  transition-delay: 0;
}
body[data-aos-delay="300"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="300"].aos-animate {
  transition-delay: 300ms;
}
body[data-aos-duration="350"] [data-aos], [data-aos][data-aos][data-aos-duration="350"] {
  transition-duration: 350ms;
}
body[data-aos-delay="350"] [data-aos], [data-aos][data-aos][data-aos-delay="350"] {
  transition-delay: 0;
}
body[data-aos-delay="350"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="350"].aos-animate {
  transition-delay: 350ms;
}
body[data-aos-duration="400"] [data-aos], [data-aos][data-aos][data-aos-duration="400"] {
  transition-duration: 400ms;
}
body[data-aos-delay="400"] [data-aos], [data-aos][data-aos][data-aos-delay="400"] {
  transition-delay: 0;
}
body[data-aos-delay="400"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="400"].aos-animate {
  transition-delay: 400ms;
}
body[data-aos-duration="450"] [data-aos], [data-aos][data-aos][data-aos-duration="450"] {
  transition-duration: 450ms;
}
body[data-aos-delay="450"] [data-aos], [data-aos][data-aos][data-aos-delay="450"] {
  transition-delay: 0;
}
body[data-aos-delay="450"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="450"].aos-animate {
  transition-delay: 450ms;
}
body[data-aos-duration="500"] [data-aos], [data-aos][data-aos][data-aos-duration="500"] {
  transition-duration: 500ms;
}
body[data-aos-delay="500"] [data-aos], [data-aos][data-aos][data-aos-delay="500"] {
  transition-delay: 0;
}
body[data-aos-delay="500"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="500"].aos-animate {
  transition-delay: 500ms;
}
body[data-aos-duration="550"] [data-aos], [data-aos][data-aos][data-aos-duration="550"] {
  transition-duration: 550ms;
}
body[data-aos-delay="550"] [data-aos], [data-aos][data-aos][data-aos-delay="550"] {
  transition-delay: 0;
}
body[data-aos-delay="550"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="550"].aos-animate {
  transition-delay: 550ms;
}
body[data-aos-duration="600"] [data-aos], [data-aos][data-aos][data-aos-duration="600"] {
  transition-duration: 600ms;
}
body[data-aos-delay="600"] [data-aos], [data-aos][data-aos][data-aos-delay="600"] {
  transition-delay: 0;
}
body[data-aos-delay="600"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="600"].aos-animate {
  transition-delay: 600ms;
}
body[data-aos-duration="650"] [data-aos], [data-aos][data-aos][data-aos-duration="650"] {
  transition-duration: 650ms;
}
body[data-aos-delay="650"] [data-aos], [data-aos][data-aos][data-aos-delay="650"] {
  transition-delay: 0;
}
body[data-aos-delay="650"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="650"].aos-animate {
  transition-delay: 650ms;
}
body[data-aos-duration="700"] [data-aos], [data-aos][data-aos][data-aos-duration="700"] {
  transition-duration: 700ms;
}
body[data-aos-delay="700"] [data-aos], [data-aos][data-aos][data-aos-delay="700"] {
  transition-delay: 0;
}
body[data-aos-delay="700"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="700"].aos-animate {
  transition-delay: 700ms;
}
body[data-aos-duration="750"] [data-aos], [data-aos][data-aos][data-aos-duration="750"] {
  transition-duration: 750ms;
}
body[data-aos-delay="750"] [data-aos], [data-aos][data-aos][data-aos-delay="750"] {
  transition-delay: 0;
}
body[data-aos-delay="750"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="750"].aos-animate {
  transition-delay: 750ms;
}
body[data-aos-duration="800"] [data-aos], [data-aos][data-aos][data-aos-duration="800"] {
  transition-duration: 800ms;
}
body[data-aos-delay="800"] [data-aos], [data-aos][data-aos][data-aos-delay="800"] {
  transition-delay: 0;
}
body[data-aos-delay="800"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="800"].aos-animate {
  transition-delay: 800ms;
}
body[data-aos-duration="850"] [data-aos], [data-aos][data-aos][data-aos-duration="850"] {
  transition-duration: 850ms;
}
body[data-aos-delay="850"] [data-aos], [data-aos][data-aos][data-aos-delay="850"] {
  transition-delay: 0;
}
body[data-aos-delay="850"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="850"].aos-animate {
  transition-delay: 850ms;
}
body[data-aos-duration="900"] [data-aos], [data-aos][data-aos][data-aos-duration="900"] {
  transition-duration: 900ms;
}
body[data-aos-delay="900"] [data-aos], [data-aos][data-aos][data-aos-delay="900"] {
  transition-delay: 0;
}
body[data-aos-delay="900"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="900"].aos-animate {
  transition-delay: 900ms;
}
body[data-aos-duration="950"] [data-aos], [data-aos][data-aos][data-aos-duration="950"] {
  transition-duration: 950ms;
}
body[data-aos-delay="950"] [data-aos], [data-aos][data-aos][data-aos-delay="950"] {
  transition-delay: 0;
}
body[data-aos-delay="950"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="950"].aos-animate {
  transition-delay: 950ms;
}
body[data-aos-duration="1000"] [data-aos], [data-aos][data-aos][data-aos-duration="1000"] {
  transition-duration: 1000ms;
}
body[data-aos-delay="1000"] [data-aos], [data-aos][data-aos][data-aos-delay="1000"] {
  transition-delay: 0;
}
body[data-aos-delay="1000"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1000"].aos-animate {
  transition-delay: 1000ms;
}
body[data-aos-duration="1050"] [data-aos], [data-aos][data-aos][data-aos-duration="1050"] {
  transition-duration: 1050ms;
}
body[data-aos-delay="1050"] [data-aos], [data-aos][data-aos][data-aos-delay="1050"] {
  transition-delay: 0;
}
body[data-aos-delay="1050"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1050"].aos-animate {
  transition-delay: 1050ms;
}
body[data-aos-duration="1100"] [data-aos], [data-aos][data-aos][data-aos-duration="1100"] {
  transition-duration: 1100ms;
}
body[data-aos-delay="1100"] [data-aos], [data-aos][data-aos][data-aos-delay="1100"] {
  transition-delay: 0;
}
body[data-aos-delay="1100"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1100"].aos-animate {
  transition-delay: 1100ms;
}
body[data-aos-duration="1150"] [data-aos], [data-aos][data-aos][data-aos-duration="1150"] {
  transition-duration: 1150ms;
}
body[data-aos-delay="1150"] [data-aos], [data-aos][data-aos][data-aos-delay="1150"] {
  transition-delay: 0;
}
body[data-aos-delay="1150"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1150"].aos-animate {
  transition-delay: 1150ms;
}
body[data-aos-duration="1200"] [data-aos], [data-aos][data-aos][data-aos-duration="1200"] {
  transition-duration: 1200ms;
}
body[data-aos-delay="1200"] [data-aos], [data-aos][data-aos][data-aos-delay="1200"] {
  transition-delay: 0;
}
body[data-aos-delay="1200"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1200"].aos-animate {
  transition-delay: 1200ms;
}
body[data-aos-duration="1250"] [data-aos], [data-aos][data-aos][data-aos-duration="1250"] {
  transition-duration: 1250ms;
}
body[data-aos-delay="1250"] [data-aos], [data-aos][data-aos][data-aos-delay="1250"] {
  transition-delay: 0;
}
body[data-aos-delay="1250"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1250"].aos-animate {
  transition-delay: 1250ms;
}
body[data-aos-duration="1300"] [data-aos], [data-aos][data-aos][data-aos-duration="1300"] {
  transition-duration: 1300ms;
}
body[data-aos-delay="1300"] [data-aos], [data-aos][data-aos][data-aos-delay="1300"] {
  transition-delay: 0;
}
body[data-aos-delay="1300"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1300"].aos-animate {
  transition-delay: 1300ms;
}
body[data-aos-duration="1350"] [data-aos], [data-aos][data-aos][data-aos-duration="1350"] {
  transition-duration: 1350ms;
}
body[data-aos-delay="1350"] [data-aos], [data-aos][data-aos][data-aos-delay="1350"] {
  transition-delay: 0;
}
body[data-aos-delay="1350"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1350"].aos-animate {
  transition-delay: 1350ms;
}
body[data-aos-duration="1400"] [data-aos], [data-aos][data-aos][data-aos-duration="1400"] {
  transition-duration: 1400ms;
}
body[data-aos-delay="1400"] [data-aos], [data-aos][data-aos][data-aos-delay="1400"] {
  transition-delay: 0;
}
body[data-aos-delay="1400"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1400"].aos-animate {
  transition-delay: 1400ms;
}
body[data-aos-duration="1450"] [data-aos], [data-aos][data-aos][data-aos-duration="1450"] {
  transition-duration: 1450ms;
}
body[data-aos-delay="1450"] [data-aos], [data-aos][data-aos][data-aos-delay="1450"] {
  transition-delay: 0;
}
body[data-aos-delay="1450"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1450"].aos-animate {
  transition-delay: 1450ms;
}
body[data-aos-duration="1500"] [data-aos], [data-aos][data-aos][data-aos-duration="1500"] {
  transition-duration: 1500ms;
}
body[data-aos-delay="1500"] [data-aos], [data-aos][data-aos][data-aos-delay="1500"] {
  transition-delay: 0;
}
body[data-aos-delay="1500"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1500"].aos-animate {
  transition-delay: 1500ms;
}
body[data-aos-duration="1550"] [data-aos], [data-aos][data-aos][data-aos-duration="1550"] {
  transition-duration: 1550ms;
}
body[data-aos-delay="1550"] [data-aos], [data-aos][data-aos][data-aos-delay="1550"] {
  transition-delay: 0;
}
body[data-aos-delay="1550"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1550"].aos-animate {
  transition-delay: 1550ms;
}
body[data-aos-duration="1600"] [data-aos], [data-aos][data-aos][data-aos-duration="1600"] {
  transition-duration: 1600ms;
}
body[data-aos-delay="1600"] [data-aos], [data-aos][data-aos][data-aos-delay="1600"] {
  transition-delay: 0;
}
body[data-aos-delay="1600"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1600"].aos-animate {
  transition-delay: 1600ms;
}
body[data-aos-duration="1650"] [data-aos], [data-aos][data-aos][data-aos-duration="1650"] {
  transition-duration: 1650ms;
}
body[data-aos-delay="1650"] [data-aos], [data-aos][data-aos][data-aos-delay="1650"] {
  transition-delay: 0;
}
body[data-aos-delay="1650"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1650"].aos-animate {
  transition-delay: 1650ms;
}
body[data-aos-duration="1700"] [data-aos], [data-aos][data-aos][data-aos-duration="1700"] {
  transition-duration: 1700ms;
}
body[data-aos-delay="1700"] [data-aos], [data-aos][data-aos][data-aos-delay="1700"] {
  transition-delay: 0;
}
body[data-aos-delay="1700"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1700"].aos-animate {
  transition-delay: 1700ms;
}
body[data-aos-duration="1750"] [data-aos], [data-aos][data-aos][data-aos-duration="1750"] {
  transition-duration: 1750ms;
}
body[data-aos-delay="1750"] [data-aos], [data-aos][data-aos][data-aos-delay="1750"] {
  transition-delay: 0;
}
body[data-aos-delay="1750"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1750"].aos-animate {
  transition-delay: 1750ms;
}
body[data-aos-duration="1800"] [data-aos], [data-aos][data-aos][data-aos-duration="1800"] {
  transition-duration: 1800ms;
}
body[data-aos-delay="1800"] [data-aos], [data-aos][data-aos][data-aos-delay="1800"] {
  transition-delay: 0;
}
body[data-aos-delay="1800"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1800"].aos-animate {
  transition-delay: 1800ms;
}
body[data-aos-duration="1850"] [data-aos], [data-aos][data-aos][data-aos-duration="1850"] {
  transition-duration: 1850ms;
}
body[data-aos-delay="1850"] [data-aos], [data-aos][data-aos][data-aos-delay="1850"] {
  transition-delay: 0;
}
body[data-aos-delay="1850"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1850"].aos-animate {
  transition-delay: 1850ms;
}
body[data-aos-duration="1900"] [data-aos], [data-aos][data-aos][data-aos-duration="1900"] {
  transition-duration: 1900ms;
}
body[data-aos-delay="1900"] [data-aos], [data-aos][data-aos][data-aos-delay="1900"] {
  transition-delay: 0;
}
body[data-aos-delay="1900"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1900"].aos-animate {
  transition-delay: 1900ms;
}
body[data-aos-duration="1950"] [data-aos], [data-aos][data-aos][data-aos-duration="1950"] {
  transition-duration: 1950ms;
}
body[data-aos-delay="1950"] [data-aos], [data-aos][data-aos][data-aos-delay="1950"] {
  transition-delay: 0;
}
body[data-aos-delay="1950"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1950"].aos-animate {
  transition-delay: 1950ms;
}
body[data-aos-duration="2000"] [data-aos], [data-aos][data-aos][data-aos-duration="2000"] {
  transition-duration: 2000ms;
}
body[data-aos-delay="2000"] [data-aos], [data-aos][data-aos][data-aos-delay="2000"] {
  transition-delay: 0;
}
body[data-aos-delay="2000"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2000"].aos-animate {
  transition-delay: 2000ms;
}
body[data-aos-duration="2050"] [data-aos], [data-aos][data-aos][data-aos-duration="2050"] {
  transition-duration: 2050ms;
}
body[data-aos-delay="2050"] [data-aos], [data-aos][data-aos][data-aos-delay="2050"] {
  transition-delay: 0;
}
body[data-aos-delay="2050"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2050"].aos-animate {
  transition-delay: 2050ms;
}
body[data-aos-duration="2100"] [data-aos], [data-aos][data-aos][data-aos-duration="2100"] {
  transition-duration: 2100ms;
}
body[data-aos-delay="2100"] [data-aos], [data-aos][data-aos][data-aos-delay="2100"] {
  transition-delay: 0;
}
body[data-aos-delay="2100"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2100"].aos-animate {
  transition-delay: 2100ms;
}
body[data-aos-duration="2150"] [data-aos], [data-aos][data-aos][data-aos-duration="2150"] {
  transition-duration: 2150ms;
}
body[data-aos-delay="2150"] [data-aos], [data-aos][data-aos][data-aos-delay="2150"] {
  transition-delay: 0;
}
body[data-aos-delay="2150"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2150"].aos-animate {
  transition-delay: 2150ms;
}
body[data-aos-duration="2200"] [data-aos], [data-aos][data-aos][data-aos-duration="2200"] {
  transition-duration: 2200ms;
}
body[data-aos-delay="2200"] [data-aos], [data-aos][data-aos][data-aos-delay="2200"] {
  transition-delay: 0;
}
body[data-aos-delay="2200"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2200"].aos-animate {
  transition-delay: 2200ms;
}
body[data-aos-duration="2250"] [data-aos], [data-aos][data-aos][data-aos-duration="2250"] {
  transition-duration: 2250ms;
}
body[data-aos-delay="2250"] [data-aos], [data-aos][data-aos][data-aos-delay="2250"] {
  transition-delay: 0;
}
body[data-aos-delay="2250"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2250"].aos-animate {
  transition-delay: 2250ms;
}
body[data-aos-duration="2300"] [data-aos], [data-aos][data-aos][data-aos-duration="2300"] {
  transition-duration: 2300ms;
}
body[data-aos-delay="2300"] [data-aos], [data-aos][data-aos][data-aos-delay="2300"] {
  transition-delay: 0;
}
body[data-aos-delay="2300"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2300"].aos-animate {
  transition-delay: 2300ms;
}
body[data-aos-duration="2350"] [data-aos], [data-aos][data-aos][data-aos-duration="2350"] {
  transition-duration: 2350ms;
}
body[data-aos-delay="2350"] [data-aos], [data-aos][data-aos][data-aos-delay="2350"] {
  transition-delay: 0;
}
body[data-aos-delay="2350"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2350"].aos-animate {
  transition-delay: 2350ms;
}
body[data-aos-duration="2400"] [data-aos], [data-aos][data-aos][data-aos-duration="2400"] {
  transition-duration: 2400ms;
}
body[data-aos-delay="2400"] [data-aos], [data-aos][data-aos][data-aos-delay="2400"] {
  transition-delay: 0;
}
body[data-aos-delay="2400"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2400"].aos-animate {
  transition-delay: 2400ms;
}
body[data-aos-duration="2450"] [data-aos], [data-aos][data-aos][data-aos-duration="2450"] {
  transition-duration: 2450ms;
}
body[data-aos-delay="2450"] [data-aos], [data-aos][data-aos][data-aos-delay="2450"] {
  transition-delay: 0;
}
body[data-aos-delay="2450"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2450"].aos-animate {
  transition-delay: 2450ms;
}
body[data-aos-duration="2500"] [data-aos], [data-aos][data-aos][data-aos-duration="2500"] {
  transition-duration: 2500ms;
}
body[data-aos-delay="2500"] [data-aos], [data-aos][data-aos][data-aos-delay="2500"] {
  transition-delay: 0;
}
body[data-aos-delay="2500"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2500"].aos-animate {
  transition-delay: 2500ms;
}
body[data-aos-duration="2550"] [data-aos], [data-aos][data-aos][data-aos-duration="2550"] {
  transition-duration: 2550ms;
}
body[data-aos-delay="2550"] [data-aos], [data-aos][data-aos][data-aos-delay="2550"] {
  transition-delay: 0;
}
body[data-aos-delay="2550"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2550"].aos-animate {
  transition-delay: 2550ms;
}
body[data-aos-duration="2600"] [data-aos], [data-aos][data-aos][data-aos-duration="2600"] {
  transition-duration: 2600ms;
}
body[data-aos-delay="2600"] [data-aos], [data-aos][data-aos][data-aos-delay="2600"] {
  transition-delay: 0;
}
body[data-aos-delay="2600"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2600"].aos-animate {
  transition-delay: 2600ms;
}
body[data-aos-duration="2650"] [data-aos], [data-aos][data-aos][data-aos-duration="2650"] {
  transition-duration: 2650ms;
}
body[data-aos-delay="2650"] [data-aos], [data-aos][data-aos][data-aos-delay="2650"] {
  transition-delay: 0;
}
body[data-aos-delay="2650"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2650"].aos-animate {
  transition-delay: 2650ms;
}
body[data-aos-duration="2700"] [data-aos], [data-aos][data-aos][data-aos-duration="2700"] {
  transition-duration: 2700ms;
}
body[data-aos-delay="2700"] [data-aos], [data-aos][data-aos][data-aos-delay="2700"] {
  transition-delay: 0;
}
body[data-aos-delay="2700"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2700"].aos-animate {
  transition-delay: 2700ms;
}
body[data-aos-duration="2750"] [data-aos], [data-aos][data-aos][data-aos-duration="2750"] {
  transition-duration: 2750ms;
}
body[data-aos-delay="2750"] [data-aos], [data-aos][data-aos][data-aos-delay="2750"] {
  transition-delay: 0;
}
body[data-aos-delay="2750"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2750"].aos-animate {
  transition-delay: 2750ms;
}
body[data-aos-duration="2800"] [data-aos], [data-aos][data-aos][data-aos-duration="2800"] {
  transition-duration: 2800ms;
}
body[data-aos-delay="2800"] [data-aos], [data-aos][data-aos][data-aos-delay="2800"] {
  transition-delay: 0;
}
body[data-aos-delay="2800"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2800"].aos-animate {
  transition-delay: 2800ms;
}
body[data-aos-duration="2850"] [data-aos], [data-aos][data-aos][data-aos-duration="2850"] {
  transition-duration: 2850ms;
}
body[data-aos-delay="2850"] [data-aos], [data-aos][data-aos][data-aos-delay="2850"] {
  transition-delay: 0;
}
body[data-aos-delay="2850"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2850"].aos-animate {
  transition-delay: 2850ms;
}
body[data-aos-duration="2900"] [data-aos], [data-aos][data-aos][data-aos-duration="2900"] {
  transition-duration: 2900ms;
}
body[data-aos-delay="2900"] [data-aos], [data-aos][data-aos][data-aos-delay="2900"] {
  transition-delay: 0;
}
body[data-aos-delay="2900"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2900"].aos-animate {
  transition-delay: 2900ms;
}
body[data-aos-duration="2950"] [data-aos], [data-aos][data-aos][data-aos-duration="2950"] {
  transition-duration: 2950ms;
}
body[data-aos-delay="2950"] [data-aos], [data-aos][data-aos][data-aos-delay="2950"] {
  transition-delay: 0;
}
body[data-aos-delay="2950"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2950"].aos-animate {
  transition-delay: 2950ms;
}
body[data-aos-duration="3000"] [data-aos], [data-aos][data-aos][data-aos-duration="3000"] {
  transition-duration: 3000ms;
}
body[data-aos-delay="3000"] [data-aos], [data-aos][data-aos][data-aos-delay="3000"] {
  transition-delay: 0;
}
body[data-aos-delay="3000"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="3000"].aos-animate {
  transition-delay: 3000ms;
}

body[data-aos-easing=linear] [data-aos], [data-aos][data-aos][data-aos-easing=linear] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body[data-aos-easing=ease] [data-aos], [data-aos][data-aos][data-aos-easing=ease] {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
body[data-aos-easing=ease-in] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in] {
  transition-timing-function: cubic-bezier(0.42, 0, 1, 1);
}
body[data-aos-easing=ease-out] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out] {
  transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
}
body[data-aos-easing=ease-in-out] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out] {
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}
body[data-aos-easing=ease-in-back] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-back] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
body[data-aos-easing=ease-out-back] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out-back] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
body[data-aos-easing=ease-in-out-back] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out-back] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
body[data-aos-easing=ease-in-sine] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-sine] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}
body[data-aos-easing=ease-out-sine] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out-sine] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}
body[data-aos-easing=ease-in-out-sine] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out-sine] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
body[data-aos-easing=ease-in-quad] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-quad] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
body[data-aos-easing=ease-out-quad] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out-quad] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body[data-aos-easing=ease-in-out-quad] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out-quad] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
body[data-aos-easing=ease-in-cubic] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-cubic] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
body[data-aos-easing=ease-out-cubic] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out-cubic] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body[data-aos-easing=ease-in-out-cubic] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out-cubic] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
body[data-aos-easing=ease-in-quart] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-quart] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
body[data-aos-easing=ease-out-quart] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out-quart] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body[data-aos-easing=ease-in-out-quart] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out-quart] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

/**
 * Fade animations:
 * fade
 * fade-up, fade-down, fade-left, fade-right
 * fade-up-right, fade-up-left, fade-down-right, fade-down-left
 */
[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}
[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-aos=fade-up] {
  transform: translate3d(0, 100px, 0);
}

[data-aos=fade-down] {
  transform: translate3d(0, -100px, 0);
}

[data-aos=fade-right] {
  transform: translate3d(-100px, 0, 0);
}

[data-aos=fade-left] {
  transform: translate3d(100px, 0, 0);
}

[data-aos=fade-up-right] {
  transform: translate3d(-100px, 100px, 0);
}

[data-aos=fade-up-left] {
  transform: translate3d(100px, 100px, 0);
}

[data-aos=fade-down-right] {
  transform: translate3d(-100px, -100px, 0);
}

[data-aos=fade-down-left] {
  transform: translate3d(100px, -100px, 0);
}

/**
 * Zoom animations:
 * zoom-in, zoom-in-up, zoom-in-down, zoom-in-left, zoom-in-right
 * zoom-out, zoom-out-up, zoom-out-down, zoom-out-left, zoom-out-right
 */
[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}
[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

[data-aos=zoom-in] {
  transform: scale(0.6);
}

[data-aos=zoom-in-up] {
  transform: translate3d(0, 100px, 0) scale(0.6);
}

[data-aos=zoom-in-down] {
  transform: translate3d(0, -100px, 0) scale(0.6);
}

[data-aos=zoom-in-right] {
  transform: translate3d(-100px, 0, 0) scale(0.6);
}

[data-aos=zoom-in-left] {
  transform: translate3d(100px, 0, 0) scale(0.6);
}

[data-aos=zoom-out] {
  transform: scale(1.2);
}

[data-aos=zoom-out-up] {
  transform: translate3d(0, 100px, 0) scale(1.2);
}

[data-aos=zoom-out-down] {
  transform: translate3d(0, -100px, 0) scale(1.2);
}

[data-aos=zoom-out-right] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}

[data-aos=zoom-out-left] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}

/**
 * Slide animations
 */
[data-aos^=slide][data-aos^=slide] {
  transition-property: transform;
}
[data-aos^=slide][data-aos^=slide].aos-animate {
  transform: translate3d(0, 0, 0);
}

[data-aos=slide-up] {
  transform: translate3d(0, 100%, 0);
}

[data-aos=slide-down] {
  transform: translate3d(0, -100%, 0);
}

[data-aos=slide-right] {
  transform: translate3d(-100%, 0, 0);
}

[data-aos=slide-left] {
  transform: translate3d(100%, 0, 0);
}

/**
 * Flip animations:
 * flip-left, flip-right, flip-up, flip-down
 */
[data-aos^=flip][data-aos^=flip] {
  backface-visibility: hidden;
  transition-property: transform;
}

[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg);
}
[data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg);
}
[data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg);
}
[data-aos=flip-up].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg);
}
[data-aos=flip-down].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

/* -------------------------------------------------------
   TYPOGRAPHY
------------------------------------------------------- */
body {
  font-size: 16.6px;
  line-height: 1.6;
  font-weight: 300;
  font-family: "filson-pro", sans-serif;
  color: #000000;
}
@media only screen and (max-width: 479px) {
  body {
    font-size: 15.6px;
  }
}

p {
  margin-bottom: 26px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "filson-pro", sans-serif;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* For WYSIWYG autop */
}
h1 p,
h2 p,
h3 p,
h4 p,
h5 p,
h6 p {
  margin-bottom: 0;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h1 {
  font-size: 44px;
  line-height: 54px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  margin-top: 0;
  text-align: center;
}
h1 span.flexer-light {
  font-weight: 400;
}

h2,
h2 p {
  font-size: 36px;
  line-height: 43px;
  letter-spacing: 0;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0.5em;
}
h2 span.flexer-light,
h2 p span.flexer-light {
  font-weight: 700;
}

h3 {
  font-size: 36px;
  line-height: 43;
  margin-bottom: 28px;
}

h4 {
  font-weight: 700;
  font-size: 19px;
  line-height: 28px;
  margin-bottom: 22px;
}

h5 {
  font-weight: 500;
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 22px;
}

h6 {
  font-size: 1em;
  font-weight: 400 !important;
  line-height: 1.4;
  margin-bottom: 0;
  font-style: italic;
  opacity: 0.7;
}

h2.subheading {
  font-size: 22px;
  line-height: 38px;
  font-weight: 400;
  margin-top: 12px;
  margin-bottom: 0;
  text-align: center;
}
h2.subheading.btns-activated {
  margin-bottom: 60px;
}

h3.subheading {
  font-size: 22px;
  line-height: 32px;
  font-weight: 300;
  margin-bottom: 0;
}

/* Heading sizes inside a column modules */
.rg-section .rg-col.rg-span_9_of_12 h2, .rg-section .rg-col.rg-span_8_of_12 h2, .rg-section .rg-col.rg-span_7_of_12 h2, .rg-section .rg-col.rg-span_6_of_12 h2, .rg-section .rg-col.rg-span_5_of_12 h2, .rg-section .rg-col.rg-span_4_of_12 h2, .rg-section .rg-col.rg-span_3_of_12 h2, .rg-section .rg-col.rg-span_2_of_12 h2, .rg-section .rg-col.rg-span_1_of_12 h2 {
  font-size: 28px;
  line-height: 32px;
  letter-spacing: 0;
}

/* Mobile styles for headins */
@media only screen and (max-width: 1023px) {
  h1 {
    font-size: 40px;
    line-height: 46px;
    letter-spacing: 0;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 26px;
    line-height: 42px;
    letter-spacing: 0;
  }
  h2.subheading {
    font-size: 18px;
    line-height: 26px;
  }
  h2.subheading.btns-activated {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 36px;
    line-height: 42px;
    letter-spacing: 0;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 28px;
    line-height: 38px;
    letter-spacing: 0;
  }
  h2.subheading {
    font-size: 18px;
    line-height: 26px;
  }
  h2.subheading.btns-activated {
    margin-bottom: 60px;
  }
}
/* Links */
a {
  color: #d03628;
  text-decoration: none !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/* Hover state only for desktop users */
@media only screen and (min-width: 1240px) {
  a:hover {
    color: #d03628;
  }
}
a:focus {
  outline: none;
}

/* Bold & Italic */
b,
strong {
  font-weight: 700;
}

em,
italic {
  font-style: italic;
}

/* Magnific popups */
h3.popup-heading {
  font-weight: 700;
  font-size: 1.9em;
  line-height: 1.4;
  margin-bottom: 1.26em;
}

p.form-description {
  font-size: 1.14em;
  margin-bottom: 36px;
  opacity: 0.76;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=76)";
  filter: alpha(opacity=76);
}

/* Global typography elements
--------------------------------------------------------------- */
span.flexer-cap {
  padding: 0 8px;
}

/* Page Builder Modules 
--------------------------------------------------------------- */
.rg-section:not(.footer) .rg-col ul,
.rg-section:not(.footer) .rg-col li,
.flexer-magnific-popup ul,
.flexer-magnific-popup li,
.flexer-staff-popup-content ul,
.flexer-staff-popup-content li,
.flexer-tabs ul,
.flexer-tabs li,
div.cpt-content ul,
div.cpt-content li,
div.template-simple-content ul,
div.template-simple-content li,
div.flexer-accordion-menu ul,
div.flexer-accordion-menu li {
  background: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.rg-section:not(.footer) .rg-col ul,
.flexer-magnific-popup ul,
.flexer-staff-popup-content ul,
.flexer-tabs ul,
div.cpt-content ul,
div.template-simple-content ul,
div.flexer-accordion-menu ul {
  position: relative;
  margin-bottom: 0;
  margin-left: 24px;
}
.rg-section:not(.footer) .rg-col ul li,
.flexer-magnific-popup ul li,
.flexer-staff-popup-content ul li,
.flexer-tabs ul li,
div.cpt-content ul li,
div.template-simple-content ul li,
div.flexer-accordion-menu ul li {
  position: relative;
  margin-bottom: 0.9em !important;
  color: #000000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.rg-section:not(.footer) .rg-col ul li:before,
.flexer-magnific-popup ul li:before,
.flexer-staff-popup-content ul li:before,
.flexer-tabs ul li:before,
div.cpt-content ul li:before,
div.template-simple-content ul li:before,
div.flexer-accordion-menu ul li:before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-caret-right.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-caret-right.svg) no-repeat 50% 50%;
  width: 16px;
  height: 16px;
  left: -20px;
  background-color: #000000;
}
.rg-section:not(.footer) .rg-col ul ul,
.flexer-magnific-popup ul ul,
.flexer-staff-popup-content ul ul,
.flexer-tabs ul ul,
div.cpt-content ul ul,
div.template-simple-content ul ul,
div.flexer-accordion-menu ul ul {
  margin-top: 1.2em;
  margin-bottom: 1.4em;
}
.rg-section:not(.footer) .rg-col form ul,
.rg-section:not(.footer) .rg-col form li,
.flexer-magnific-popup form ul,
.flexer-magnific-popup form li,
.flexer-staff-popup-content form ul,
.flexer-staff-popup-content form li,
.flexer-tabs form ul,
.flexer-tabs form li,
div.cpt-content form ul,
div.cpt-content form li,
div.template-simple-content form ul,
div.template-simple-content form li,
div.flexer-accordion-menu form ul,
div.flexer-accordion-menu form li {
  background: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.rg-section:not(.footer) .rg-col form ul:before,
.rg-section:not(.footer) .rg-col form li:before,
.flexer-magnific-popup form ul:before,
.flexer-magnific-popup form li:before,
.flexer-staff-popup-content form ul:before,
.flexer-staff-popup-content form li:before,
.flexer-tabs form ul:before,
.flexer-tabs form li:before,
div.cpt-content form ul:before,
div.cpt-content form li:before,
div.template-simple-content form ul:before,
div.template-simple-content form li:before,
div.flexer-accordion-menu form ul:before,
div.flexer-accordion-menu form li:before {
  display: none;
}

/* Search Results 
---------------------------------------------------------------- */
body.search #Search-results li {
  margin-bottom: 2.4em !important;
  padding-bottom: 1.06em !important;
  border-bottom: 3px solid #eee;
}
body.search #Search-results li:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none;
}
body.search #Search-results li h4 {
  margin-bottom: 0.5em;
}
body.search #Search-results li h4 a {
  font-size: 1.4em;
  line-height: 1;
  font-family: "filson-pro", sans-serif;
}
body.search #Search-results li p.metas {
  font-weight: 500;
}
/* WYSIWYG editor's Custom styles
-------------------------------------------------------------- */
span.flexer-content-styles-background {
  display: block;
  margin-bottom: 0px;
  margin-left: 0;
  padding: 0;
  font-size: 1.24em;
  background: transparent;
  font-weight: 700;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* Extras & Hacks 
------------------------------------------------------------- */
span.flexer-mobile-linebreak {
  display: none;
} /* Add linebreak only for smartphones. */
span.flexer-mobile-linebreak:after {
  content: "\a";
  white-space: pre;
}

.flexer-caption-text {
  margin-top: 1.06em;
  margin-bottom: 0;
  font-size: 0.8em;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
} /* For image and video captions */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-tap-highlight-color: rgba(0, 0, 0, 0);
} /* Disable mobile browser click/touch/tap feedback box */
/* -------------------------------------------------------
   BUTTONS
------------------------------------------------------- */
.flexer-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 60px;
  border: 2px solid #d03628;
  margin: 0 0 12px 0;
  padding: 0 50px;
  color: #ffffff;
  background-color: #d03628;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}
.flexer-btn.full-width {
  width: auto;
  padding: 0;
}
.flexer-btn.icon-right i.icon {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  margin-left: 8px;
}
.flexer-btn.icon-right i.icon.arrow-right:before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-arrow-right.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-arrow-right.svg) no-repeat 50% 50%;
  background-color: #ffffff;
}
.flexer-btn.icon-right i.icon.envelope:before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-envelope.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-envelope.svg) no-repeat 50% 50%;
  background-color: #ffffff;
}
.flexer-btn.icon-right i.icon.paper-plane:before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-paper-plane.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-paper-plane.svg) no-repeat 50% 50%;
  background-color: #ffffff;
}
.flexer-btn.secondary-btn {
  border-color: #d03628;
  background-color: transparent;
  color: #d03628;
}
@media only screen and (min-width: 1240px) {
  .flexer-btn.secondary-btn:hover i.theme-icon:before {
    background-color: #d03628;
  }
}
@media only screen and (max-width: 767px) {
  .flexer-btn.secondary-btn {
    margin-left: 0;
  }
}
.flexer-btn:hover {
  color: #ffffff;
  -webkit-box-shadow: 0 0 30px 0 rgba(208, 54, 40, 0.3);
  -moz-box-shadow: 0 0 30px 0 rgba(208, 54, 40, 0.3);
  box-shadow: 0 0 30px 0 rgba(208, 54, 40, 0.3);
}

/* -------------------------------------------------------
   SECTIONS
------------------------------------------------------- */
#Site {
  overflow-x: hidden;
}

.flexer-section-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
}
.flexer-section-wrapper.boxed-width {
  max-width: 1920px;
  margin: 0 auto;
}

#Header.flexer-section-wrapper {
  max-width: 100%;
}

/* Section paddings 
---------------------------------------------------------------- */
.flexer-section-wrapper.paddings-normal {
  padding-top: 80px;
  padding-bottom: 100px;
}
.flexer-section-wrapper.paddings-normal-top {
  padding-top: 80px;
  padding-bottom: 0;
}
.flexer-section-wrapper.paddings-normal-bottom {
  padding-top: 0;
  padding-bottom: 100px;
}
.flexer-section-wrapper.paddings-small {
  padding-top: 22px;
  padding-bottom: 40px;
}
.flexer-section-wrapper.paddings-small-top {
  padding-top: 22px;
  padding-bottom: 0;
}
.flexer-section-wrapper.paddings-small-bottom {
  padding-top: 0;
  padding-bottom: 40px;
}
.flexer-section-wrapper.paddings-medium {
  padding-top: 90px;
  padding-bottom: 126px;
}
.flexer-section-wrapper.paddings-medium-top {
  padding-top: 100px;
  padding-bottom: 0;
}
.flexer-section-wrapper.paddings-medium-bottom {
  padding-top: 0;
  padding-bottom: 126px;
}
.flexer-section-wrapper.paddings-large {
  padding-top: 146px;
  padding-bottom: 150px;
}
.flexer-section-wrapper.paddings-large-top {
  padding-top: 146px;
  padding-bottom: 0;
}
.flexer-section-wrapper.paddings-large-bottom {
  padding-top: 0;
  padding-bottom: 150px;
}
.flexer-section-wrapper.paddings-frontpage {
  padding-top: 68px;
  padding-bottom: 114px;
}
.flexer-section-wrapper.paddings-subpage {
  padding-top: 250px;
  padding-bottom: 90px;
}
.flexer-section-wrapper.paddings-none {
  padding-top: 0;
  padding-bottom: 0;
}
@media only screen and (min-width: 960px) and (max-width: 1239px) {
  .flexer-section-wrapper.paddings-medium {
    padding-top: 100px;
    padding-bottom: 126px;
  }
  .flexer-section-wrapper.paddings-medium-top {
    padding-top: 100px;
    padding-bottom: 0;
  }
  .flexer-section-wrapper.paddings-medium-bottom {
    padding-top: 0;
    padding-bottom: 126px;
  }
  .flexer-section-wrapper.paddings-large {
    padding-top: 126px;
    padding-bottom: 134px;
  }
  .flexer-section-wrapper.paddings-large-top {
    padding-top: 126px;
    padding-bottom: 0;
  }
  .flexer-section-wrapper.paddings-large-bottom {
    padding-top: 0;
    padding-bottom: 134px;
  }
  .flexer-section-wrapper.paddings-subpage {
    padding-top: 220px;
    padding-bottom: 80px;
  }
  .flexer-section-wrapper.paddings-frontpage {
    padding-top: 88px;
    padding-bottom: 124px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .flexer-section-wrapper.paddings-normal {
    padding-top: 50px;
    padding-bottom: 70px;
  }
  .flexer-section-wrapper.paddings-normal-top {
    padding-top: 50px;
    padding-bottom: 0;
  }
  .flexer-section-wrapper.paddings-normal-bottom {
    padding-top: 0;
    padding-bottom: 70px;
  }
  .flexer-section-wrapper.paddings-medium {
    padding-top: 70px;
    padding-bottom: 100px;
  }
  .flexer-section-wrapper.paddings-medium-top {
    padding-top: 70px;
    padding-bottom: 0;
  }
  .flexer-section-wrapper.paddings-medium-bottom {
    padding-top: 0;
    padding-bottom: 100px;
  }
  .flexer-section-wrapper.paddings-large {
    padding-top: 126px;
    padding-bottom: 134px;
  }
  .flexer-section-wrapper.paddings-large-top {
    padding-top: 126px;
    padding-bottom: 0;
  }
  .flexer-section-wrapper.paddings-large-bottom {
    padding-top: 0;
    padding-bottom: 134px;
  }
  .flexer-section-wrapper.paddings-subpage {
    padding-top: 220px;
    padding-bottom: 120px;
  }
  .flexer-section-wrapper.paddings-frontpage {
    padding-top: 88px;
    padding-bottom: 124px;
  }
}
@media only screen and (max-width: 767px) {
  .flexer-section-wrapper.paddings-frontpage {
    padding-top: 0;
    padding-bottom: 0;
  }
  .flexer-section-wrapper.paddings-subpage {
    padding-top: 170px;
    padding-bottom: 60px;
  }
  .flexer-section-wrapper.paddings-normal {
    padding-top: 50px;
    padding-bottom: 70px;
  }
  .flexer-section-wrapper.paddings-normal-top {
    padding-top: 50px;
    padding-bottom: 0;
  }
  .flexer-section-wrapper.paddings-normal-bottom {
    padding-top: 0;
    padding-bottom: 70px;
  }
  .flexer-section-wrapper.paddings-medium {
    padding-top: 70px;
    padding-bottom: 90px;
  }
  .flexer-section-wrapper.paddings-medium-top {
    padding-top: 70px;
    padding-bottom: 0;
  }
  .flexer-section-wrapper.paddings-medium-bottom {
    padding-top: 0;
    padding-bottom: 90px;
  }
  .flexer-section-wrapper.paddings-large {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}

/* Section background image & gradient
---------------------------------------------------------------- */
.flexer-section-wrapper .section-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  z-index: 2;
}

/* Section mask for faking background images's opacity
---------------------------------------------------------------- */
.flexer-section-wrapper .flexer-section-mask {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  z-index: 3;
}
.flexer-section-wrapper .flexer-section-mask.none {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.flexer-section-wrapper .flexer-section-mask.extra-low {
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  filter: alpha(opacity=20);
}
.flexer-section-wrapper .flexer-section-mask.low {
  opacity: 0.4;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
}
.flexer-section-wrapper .flexer-section-mask.medium {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
}
.flexer-section-wrapper .flexer-section-mask.high {
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
}
.flexer-section-wrapper .flexer-section-mask.extra-high {
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
}

/* Background-image position ( js set scalings )
---------------------------------------------------------------- */
.flexer-section-wrapper {
  background-repeat: no-repeat;
}
.flexer-section-wrapper.center-center {
  background-position: center center;
  background-size: cover;
}
.flexer-section-wrapper.center-center-no-scaling {
  background-position: center center;
}
.flexer-section-wrapper.center-top {
  background-position: center top;
  background-size: cover;
}
.flexer-section-wrapper.center-top-no-scaling {
  background-position: center top;
}
.flexer-section-wrapper.center-bottom {
  background-position: center bottom;
  background-size: cover;
}
.flexer-section-wrapper.center-bottom-no-scaling {
  background-position: center bottom;
}
.flexer-section-wrapper.left-bottom-no-scaling {
  background-position: left bottom;
}
.flexer-section-wrapper.right-bottom-no-scaling {
  background-position: right bottom;
}

/* -------------------------------------------------------
   CONTENT WRAPPER
------------------------------------------------------- */
.flexer-content-wrapper {
  position: relative;
  transform: translateZ(0);
  max-width: 100%;
  width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 4;
}
.flexer-content-wrapper.full {
  width: 100%;
  padding-left: 3.2%;
  padding-right: 3.2%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.flexer-content-wrapper.full.no-horizontal-margins {
  max-width: 100%;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.flexer-content-wrapper.h-center {
  text-align: center;
}
.flexer-content-wrapper.v-center {
  position: relative;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.flexer-content-wrapper.home {
  position: absolute;
  width: 100%;
  top: 48%;
  -webkit-transform: translate3d(0, -54%, 0);
  -moz-transform: translate3d(0, -54%, 0);
  -ms-transform: translate3d(0, -54%, 0);
  -o-transform: translate3d(0, -54%, 0);
  transform: translate3d(0, -54%, 0);
  text-align: center;
}
@media only screen and (max-width: 1239px) {
  .flexer-content-wrapper.home {
    top: 45%;
  }
}
@media only screen and (min-width: 1921px) {
  .flexer-content-wrapper.left-to-full {
    width: -moz-calc(1240px + ( ( 100% - 1240px ) / 2 ));
    width: -webkit-calc(1240px + ( ( 100% - 1240px ) / 2 ));
    width: calc(1240px + ( ( 100% - 1240px ) / 2 ));
    margin-left: -moz-calc(( 100% - 1240px ) / 2);
    margin-left: -webkit-calc(( 100% - 1240px ) / 2);
    margin-left: calc(( 100% - 1240px ) / 2);
    margin-right: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1361px) and (max-width: 1920px) {
  .flexer-content-wrapper.left-to-full {
    width: -moz-calc(1240px + ( ( 100% - 1240px ) / 2 ));
    width: -webkit-calc(1240px + ( ( 100% - 1240px ) / 2 ));
    width: calc(1240px + ( ( 100% - 1240px ) / 2 ));
    margin-left: -moz-calc(( 100% - 1240px ) / 2);
    margin-left: -webkit-calc(( 100% - 1240px ) / 2);
    margin-left: calc(( 100% - 1240px ) / 2);
    margin-right: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 961px) and (max-width: 1360px) {
  .flexer-content-wrapper.left-to-full {
    width: 1240px;
    margin: 0 auto;
    padding-right: 0;
  }
}
@media only screen and (max-width: 960px) {
  .flexer-content-wrapper.left-to-full {
    width: 1240px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1239px) {
  .flexer-content-wrapper.no-horizontal-margins {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .flexer-content-wrapper {
    padding-left: 36px;
    padding-right: 36px;
  }
  .flexer-content-wrapper.no-horizontal-margins {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

body.single .flexer-content-wrapper,
body.page-template-template-simple .flexer-content-wrapper { /*padding-left: 32px;*/ }

@media only screen and (max-width: 767px) {
  .services-heading-content .flexer-headings-and-content h2 p {
    font-size: 32px !important;
    line-height: 38px !important;
  }
}

/* -------------------------------------------------------
   RESPONSIVE GRID 
------------------------------------------------------- */
.rg-section:not(.footer) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  align-items: top;
  padding: 0;
  margin: 0;
  *zoom: 1;
}
.rg-section:not(.footer):before, .rg-section:not(.footer):after {
  content: " ";
  display: table;
}
.rg-section:not(.footer):after {
  clear: both;
}
@media only screen and (max-width: 959px) {
  .rg-section:not(.footer) {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1239px) {
  .rg-section:not(.footer).mobile-reverse-order {
    flex-direction: column-reverse;
  }
  .rg-section:not(.footer).mobile-reverse-order .rg-col {
    margin: 0 0 40px 0 !important;
  }
  .rg-section:not(.footer).mobile-reverse-order .rg-col:first-child {
    margin-bottom: 0 !important;
  }
}
@media only screen and (max-width: 1239px) {
  .rg-section:not(.footer).mobile-full-width-columns .rg-col {
    margin: 60px 0 0 0;
  }
  .rg-section:not(.footer).mobile-full-width-columns .rg-col:first-child {
    margin: 0;
  }
  .rg-section:not(.footer).mobile-full-width-columns .rg-col.placeholder {
    margin: 0;
  }
  .rg-section:not(.footer).mobile-full-width-columns .rg-col.rg-span_12_of_12, .rg-section:not(.footer).mobile-full-width-columns .rg-col.rg-span_11_of_12, .rg-section:not(.footer).mobile-full-width-columns .rg-col.rg-span_10_of_12, .rg-section:not(.footer).mobile-full-width-columns .rg-col.rg-span_9_of_12, .rg-section:not(.footer).mobile-full-width-columns .rg-col.rg-span_8_of_12, .rg-section:not(.footer).mobile-full-width-columns .rg-col.rg-span_7_of_12, .rg-section:not(.footer).mobile-full-width-columns .rg-col.rg-span_6_of_12, .rg-section:not(.footer).mobile-full-width-columns .rg-col.rg-span_5_of_12, .rg-section:not(.footer).mobile-full-width-columns .rg-col.rg-span_4_of_12, .rg-section:not(.footer).mobile-full-width-columns .rg-col.rg-span_3_of_12, .rg-section:not(.footer).mobile-full-width-columns .rg-col.rg-span_2_of_12, .rg-section:not(.footer).mobile-full-width-columns .rg-col.rg-span_1_of_12 {
    width: 100%;
  }
}
.rg-section:not(.footer).align-vertically {
  align-items: center;
}
.rg-section:not(.footer).hide-group {
  display: none !important;
}
.rg-section:not(.footer) .rg-col {
  display: block;
  float: left;
  margin: 0 0 0 3.6%;
  min-height: 1px;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.rg-section:not(.footer) .rg-col:first-child {
  margin-left: 0;
}
.rg-section:not(.footer) .rg-col.bg-color {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding: 46px 46px 56px 46px;
}
@media only screen and (min-width: 1240px) {
  .rg-section:not(.footer) .rg-col.narrow {
    padding: 0 10%;
  }
}
@media only screen and (min-width: 1240px) {
  .rg-section:not(.footer) .rg-col.narrow-right {
    padding: 0 15% 0 10%;
  }
}
@media only screen and (min-width: 1240px) {
  .rg-section:not(.footer) .rg-col.narrow-left {
    padding: 0 10% 0 15%;
  }
}
@media only screen and (min-width: 1240px) {
  .rg-section:not(.footer) .rg-col.semi-narrow {
    padding: 0 5%;
  }
}
@media only screen and (min-width: 1240px) {
  .rg-section:not(.footer) .rg-col.extra-narrow {
    padding: 0 20%;
  }
}
.rg-section:not(.footer) .rg-col.rg-span_12_of_12 {
  width: 100%;
}
.rg-section:not(.footer) .rg-col.rg-span_11_of_12 {
  width: 91.36%;
}
.rg-section:not(.footer) .rg-col.rg-span_10_of_12 {
  width: 82.73%;
}
.rg-section:not(.footer) .rg-col.rg-span_9_of_12 {
  width: 74.1%;
}
.rg-section:not(.footer) .rg-col.rg-span_8_of_12 {
  width: 65.46%;
}
.rg-section:not(.footer) .rg-col.rg-span_7_of_12 {
  width: 56.83%;
}
.rg-section:not(.footer) .rg-col.rg-span_6_of_12 {
  width: 48.2%;
}
.rg-section:not(.footer) .rg-col.rg-span_5_of_12 {
  width: 39.56%;
}
.rg-section:not(.footer) .rg-col.rg-span_4_of_12 {
  width: 30.93%;
}
.rg-section:not(.footer) .rg-col.rg-span_3_of_12 {
  width: 22.3%;
}
.rg-section:not(.footer) .rg-col.rg-span_2_of_12 {
  width: 13.66%;
}
.rg-section:not(.footer) .rg-col.rg-span_1_of_12 {
  width: 5.033%;
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .rg-section:not(.footer) .rg-col {
    margin-top: 40px;
  }
  .rg-section:not(.footer) .rg-col:nth-child(2n+1) {
    margin-left: 0;
  }
  .rg-section:not(.footer) .rg-col.placeholder {
    margin: 0;
  }
  .rg-section:not(.footer) .rg-col.rg-span_6_of_12, .rg-section:not(.footer) .rg-col.rg-span_5_of_12, .rg-section:not(.footer) .rg-col.rg-span_4_of_12, .rg-section:not(.footer) .rg-col.rg-span_3_of_12, .rg-section:not(.footer) .rg-col.rg-span_2_of_12, .rg-section:not(.footer) .rg-col.rg-span_1_of_12 {
    width: 100%;
  }
}
@media only screen and (max-width: 959px) {
  .rg-section:not(.footer) .rg-col {
    margin: 40px 0 0 0;
  }
  .rg-section:not(.footer) .rg-col:first-child {
    margin: 0;
  }
  .rg-section:not(.footer) .rg-col.placeholder {
    margin: 0;
  }
  .rg-section:not(.footer) .rg-col.rg-span_12_of_12, .rg-section:not(.footer) .rg-col.rg-span_11_of_12, .rg-section:not(.footer) .rg-col.rg-span_10_of_12, .rg-section:not(.footer) .rg-col.rg-span_9_of_12, .rg-section:not(.footer) .rg-col.rg-span_8_of_12, .rg-section:not(.footer) .rg-col.rg-span_7_of_12, .rg-section:not(.footer) .rg-col.rg-span_6_of_12, .rg-section:not(.footer) .rg-col.rg-span_5_of_12, .rg-section:not(.footer) .rg-col.rg-span_4_of_12, .rg-section:not(.footer) .rg-col.rg-span_3_of_12, .rg-section:not(.footer) .rg-col.rg-span_2_of_12, .rg-section:not(.footer) .rg-col.rg-span_1_of_12 {
    width: 100%;
  }
}

.flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col {
  margin: 0;
}
.flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_12_of_12 {
  width: 100%;
}
.flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_11_of_12 {
  width: 91.666%;
}
.flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_10_of_12 {
  width: 75%;
}
.flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_9_of_12 {
  width: 74.35%;
}
.flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_8_of_12 {
  width: 66.666%;
}
.flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_7_of_12 {
  width: 58.333%;
}
.flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_6_of_12 {
  width: 50%;
}
.flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_5_of_12 {
  width: 41.666%;
}
.flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_4_of_12 {
  width: 33.333%;
}
.flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_3_of_12 {
  width: 25%;
}
.flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_2_of_12 {
  width: 16.666%;
}
.flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_1_of_12 {
  width: 8.333%;
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_6_of_12, .flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_5_of_12, .flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_4_of_12, .flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_3_of_12, .flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_2_of_12, .flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_1_of_12 {
    width: 100%;
  }
}
@media only screen and (max-width: 959px) {
  .flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_12_of_12, .flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_11_of_12, .flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_10_of_12, .flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_9_of_12, .flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_8_of_12, .flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_7_of_12, .flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_6_of_12, .flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_5_of_12, .flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_4_of_12, .flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_3_of_12, .flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_2_of_12, .flexer-content-wrapper.no-horizontal-margins .rg-section:not(.footer) .rg-col.rg-span_1_of_12 {
    width: 100%;
  }
}

/* -------------------------------------------------------
   LISTS
-------------------------------------------------------

.flexer-section-wrapper ul:not( .rg-col ul ), 
.flexer-section-wrapper li:not( .rg-col li ) { 
    background: none !important;
    list-style: none !important;
    // margin: 0 !important;
    // padding: 0 !important;
}

*/
/* -------------------------------------------------------
   FORMS
------------------------------------------------------- */
form {
  position: relative;
}
form div.item-wrapper {
  position: relative;
  max-width: 100%;
}

input, textarea, button {
  -webkit-appearance: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  border-radius: 0;
  -webkit-border-radius: 0;
}

input[type=submit]:focus,
button:focus {
  outline: none;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #959595;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #959595;
  opacity: 1;
}

:-ms-input-placeholder { /* IE 10+ */
  color: #959595;
}

:-moz-placeholder { /* Firefox 18- */
  color: #959595;
}

::-moz-placeholder {
  opacity: 1;
}

/* -------------------------------------------------------
   FORMS
------------------------------------------------------- */
#Flexer-contact-form-popup {
  position: relative;
  max-width: 640px;
  width: 94%;
  margin: 20px auto;
  padding: 40px 40px 54px 40px;
  background-color: #ffffff;
  color: #000000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}
#Flexer-contact-form-popup .flexer-notification-container {
  display: none;
}
#Flexer-contact-form-popup .flexer-notification-container .flexer-nc-heading {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.42px;
  color: #000000;
  margin-bottom: 24px;
  font-family: "filson-pro", sans-serif;
  line-height: 26px;
}
#Flexer-contact-form-popup .flexer-notification-container .flexer-nc-subheading {
  font-size: 14.6px;
  font-family: "filson-pro", sans-serif;
  line-height: 24.6px;
  color: #000000;
  margin-bottom: 20px;
  font-weight: 400;
  width: 80%;
}
@media only screen and (max-width: 767px) {
  #Flexer-contact-form-popup .flexer-notification-container .flexer-nc-subheading {
    font-size: 14.6px;
    line-height: 24.6px;
    width: 100%;
    margin-bottom: 12px;
  }
}
#Flexer-contact-form-popup .flexer-notification-container .notification {
  font-weight: 700;
  color: #000000;
  margin-top: 20px;
}
#Flexer-contact-form-popup.success {
  max-width: 540px;
}
#Flexer-contact-form-popup.success .flexer-notification-container {
  display: block;
}
#Flexer-contact-form-popup.success .heading, #Flexer-contact-form-popup.success .subheading, #Flexer-contact-form-popup.success form.flexer-contact-form {
  display: none;
}
@media only screen and (max-width: 767px) {
  #Flexer-contact-form-popup.success {
    padding: 34px 26px 47px 26px !important;
  }
}
#Flexer-contact-form-popup.error {
  animation: shake 0.41s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}
@media only screen and (max-width: 767px) {
  #Flexer-contact-form-popup {
    padding: 38px 30px 37px 30px;
  }
}
#Flexer-contact-form-popup.active {
  display: block;
}
#Flexer-contact-form-popup .heading {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.42px;
  color: #000000;
  margin-bottom: 36px;
  font-family: "filson-pro", sans-serif;
  line-height: 46px;
}
@media only screen and (max-width: 960px) {
  #Flexer-contact-form-popup .heading {
    font-size: 33px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  #Flexer-contact-form-popup .heading {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 32px;
  }
}
#Flexer-contact-form-popup .subheading {
  font-size: 22px;
  color: #000000;
  margin-bottom: 50px;
  font-weight: 400;
}
#Flexer-contact-form-popup .subheading span.phone {
  color: #d03628;
  font-weight: 700;
}
#Flexer-contact-form-popup .subheading span.email {
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  #Flexer-contact-form-popup .subheading {
    font-size: 15.6px;
    line-height: 26px;
    width: 80%;
    margin-bottom: 40px;
  }
}
#Flexer-contact-form-popup form.flexer-contact-form {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  font-family: "filson-pro", sans-serif;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item {
  width: -moz-calc((100% - 20px) / 2);
  width: -webkit-calc((100% - 20px) / 2);
  width: calc((100% - 20px) / 2);
  display: flex;
  flex-direction: column;
  margin-bottom: 26px;
}
@media only screen and (max-width: 767px) {
  #Flexer-contact-form-popup form.flexer-contact-form div.item {
    width: 100% !important;
  }
  #Flexer-contact-form-popup form.flexer-contact-form div.item:nth-of-type(2n+1) {
    margin-right: 0 !important;
  }
}
#Flexer-contact-form-popup form.flexer-contact-form div.item:nth-of-type(2n+1) {
  margin-right: 20px;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item label {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 0 6px;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item label.input-field-label {
  position: absolute;
  top: -9px;
  left: 13px;
  background: #ffffff;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item label.invalidated {
  color: #F8351E;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item label span.required {
  color: #F8351E;
  font-weight: 500;
  margin-left: 5px;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item input {
  height: 56px;
  border-radius: 10px;
  border: 0.5px solid #A4A4B0;
  outline: none;
  font-family: "filson-pro", sans-serif;
  font-size: 14px;
  padding-left: 20px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  font-weight:   400;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item input:focus-visible {
  border: 0.5px solid #0F0B2A; /*box-shadow: 0px 2px 19px #11102C2E;*/
}
#Flexer-contact-form-popup form.flexer-contact-form div.item input.validated { /*border: 1px solid #6DAC3B;*/ }
#Flexer-contact-form-popup form.flexer-contact-form div.item input.invalidated {
  border: 1px solid #F8351E;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item.full-width {
  width: 100%;
  margin-right: 0;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item.full-width textarea {
  height: 112px;
  border-radius: 10px;
  border: 0.5px solid #A4A4B0;
  outline: none;
  font-family: "filson-pro", sans-serif;
  font-size: 14px;
  line-height: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 15px;
  resize: none;
  font-weight:   400;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item textarea.info {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item textarea.info:focus-visible {
  border: 0.5px solid #0F0B2A;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item .captcha-container {
  height: 50px;
  margin-bottom: 30px;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item .captcha-container .line {
  position: relative;
  width: 100%;
  height: 3px;
  background: #A4A4B0;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  -ms-transform: translate3d(0, -50%, 0);
  -o-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
#Flexer-contact-form-popup form.flexer-contact-form div.item .captcha-container .object {
  position: absolute;
  width: 30px;
  height: 31px;
  border-radius: 100%;
  background: #d03628;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1607843137);
  margin-top: 8px;
  left: 14px;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item .captcha-container .object.active {
  width: 48px !important;
  height: 48px !important;
  transform-origin: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  margin-top: unset;
  left: unset;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item .captcha-container .object.active:before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-check.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-check.svg) no-repeat 50% 50%;
  background-color: #ffffff;
  height: 15px;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item .captcha-container .circle {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  background: #ffffff;
  border: 2px solid #A4A4B0;
  left: 70%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item .captcha-container .circle.active {
  width: 40px;
  height: 40px;
  border: 2px solid #d03628;
}
#Flexer-contact-form-popup form.flexer-contact-form button.submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  background: #d03628;
  border-radius: 6px;
  color: #ffffff;
  border: none;
  font-family: "filson-pro", sans-serif;
  font-size: 17px;
  font-weight: 700;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-top: 35px;
  cursor: pointer;
}
@media only screen and (min-width: 421px) and (max-width: 479px) {
  #Flexer-contact-form-popup form.flexer-contact-form button.submit {
    font-size: 18px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #Flexer-contact-form-popup form.flexer-contact-form button.submit {
    font-size: 16px;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    padding: unset;
  }
}
#Flexer-contact-form-popup form.flexer-contact-form button.submit:disabled {
  opacity: 0.4;
  pointer-events: none;
}
#Flexer-contact-form-popup form.flexer-contact-form button.submit.show {
  opacity: 1 !important;
}
#Flexer-contact-form-popup form.flexer-contact-form button.submit span.icon {
  position: relative;
  margin-right: 26px;
}
#Flexer-contact-form-popup form.flexer-contact-form button.submit span.icon:before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-paper-plane.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-paper-plane.svg) no-repeat 50% 50%;
  background-color: #ffffff;
  position: absolute;
  width: 32px;
  height: 32px;
}
#Flexer-contact-form-popup form.flexer-contact-form button.submit span.icon.success:before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-check.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-check.svg) no-repeat 50% 50%;
}
#Flexer-contact-form-popup form.flexer-contact-form button.submit.ajax-load {
  /*opacity: 0.4;*/
  pointer-events: none;
  opacity: 1 !important;
}
#Flexer-contact-form-popup form.flexer-contact-form button.submit.ajax-load .icon:before {
  background-color: transparent;
  mask: unset !important;
}
#Flexer-contact-form-popup form.flexer-contact-form button.submit.ajax-load .icon .flexer-form-ajax-loader {
  opacity: 1;
}
#Flexer-contact-form-popup form.flexer-contact-form button.submit .flexer-form-ajax-loader {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
#Flexer-contact-form-popup form.flexer-contact-form button.submit .flexer-form-ajax-loader div.spinner-wrapper {
  position: relative;
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 767px) {
  #Flexer-contact-form-popup form.flexer-contact-form button.submit .flexer-form-ajax-loader div.spinner-wrapper {
    margin-left: -17px;
  }
}
#Flexer-contact-form-popup form.flexer-contact-form button.submit .flexer-form-ajax-loader div.spinner-wrapper .spinner {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
}
#Flexer-contact-form-popup form.flexer-contact-form button.submit .flexer-form-ajax-loader div.spinner-wrapper .spinner div {
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  border: 3px solid #ffffff;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  border-radius: 999px;
  -webkit-animation: spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  animation: spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #ffffff transparent transparent transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#Flexer-contact-form-popup form.flexer-contact-form button.submit .flexer-form-ajax-loader div.spinner-wrapper .spinner div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
  animation-delay: -0.45s;
}
#Flexer-contact-form-popup form.flexer-contact-form button.submit .flexer-form-ajax-loader div.spinner-wrapper .spinner div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
#Flexer-contact-form-popup form.flexer-contact-form button.submit .flexer-form-ajax-loader div.spinner-wrapper .spinner div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
  animation-delay: -0.15s;
}
#Flexer-contact-form-popup form.flexer-contact-form button.submit:hover {
  -webkit-box-shadow: 2px 2px 24px 0px rgba(208, 54, 40, 0.6);
  -moz-box-shadow: 2px 2px 24px 0px rgba(208, 54, 40, 0.6);
  box-shadow: 2px 2px 24px 0px rgba(208, 54, 40, 0.6);
}
#Flexer-contact-form-popup form.flexer-contact-form div.item {
  position: relative;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item span.placeholder {
  display: none;
  position: absolute;
  top: 50px;
  left: 20px;
  font-weight: 500;
  opacity: 0.5;
  z-index: 99;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item span.placeholder.active {
  display: inline-block;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item .select2-container {
  width: 100% !important;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item .select2-selection {
  height: unset;
  min-height: 56px;
  border-radius: 10px !important;
  border: 0.5px solid #A4A4B0;
  font-family: "filson-pro", sans-serif;
  font-size: 16px;
  font-weight:   500;
  padding: 5px 0 14px 0;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item .select2-selection.validated {
  border: 1px solid #6DAC3B;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item .select2-selection.invalidated {
  border: 1px solid #D63D0F;
}
#Flexer-contact-form-popup form.flexer-contact-form div.item .select2-selection span.select2-selection__rendered {
  line-height: 53px !important;
}

/* ------------------------------------------------------------------
   FLEXER BUILDER / ROOT & COLUMN MODULES
------------------------------------------------------------------- */
/* Divider 
-------------- */
.flexer-divider {
  width: 100%;
  clear: both;
}
.flexer-divider.default {
  height: 60px;
}
.flexer-divider.low {
  height: 40px;
}
.flexer-divider.high {
  height: 80px;
}
.flexer-divider.extra-high {
  height: 120px;
}
.flexer-divider.with-image {
  height: 110px;
  display: flex;
  justify-content: center;
  margin-bottom: 38px;
}
.flexer-divider.with-image img {
  height: 134px;
}
@media only screen and (max-width: 1239px) {
  .flexer-divider.mobile-hide {
    display: none !important;
  }
}

/* -------------------------------------------------------
   STAFF GRID
------------------------------------------------------- */
.flexer-staff-grid .grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flexer-staff-grid .grid .item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: -moz-calc(( 100% - 120px ) / 4);
  width: -webkit-calc(( 100% - 120px ) / 4);
  width: calc(( 100% - 120px ) / 4);
  margin-right: 40px;
  margin-bottom: 30px;
  padding: 26px 30px 34px 30px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
}
@media only screen and (min-width: 1240px) {
  .flexer-staff-grid .grid .item:nth-child(4n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1239px) {
  .flexer-staff-grid .grid .item {
    width: -moz-calc(( 100% - 80px ) / 3);
    width: -webkit-calc(( 100% - 80px ) / 3);
    width: calc(( 100% - 80px ) / 3);
  }
  .flexer-staff-grid .grid .item:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .flexer-staff-grid .grid .item {
    width: -moz-calc(( 100% - 40px ) / 2);
    width: -webkit-calc(( 100% - 40px ) / 2);
    width: calc(( 100% - 40px ) / 2);
  }
  .flexer-staff-grid .grid .item:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 479px) {
  .flexer-staff-grid .grid .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
    padding: 0;
  }
  .flexer-staff-grid .grid .item:last-of-type {
    margin-bottom: 0;
  }
}
.flexer-staff-grid .grid .item .image-wrapper {
  position: relative;
  min-width: 180px;
  max-width: 180px;
  height: 180px;
  margin-bottom: 26px;
}
.flexer-staff-grid .grid .item .image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 100%;
}
.flexer-staff-grid .grid .item p {
  width: 100%;
  font-style: normal;
  margin-bottom: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.flexer-staff-grid .grid .item p.name {
  font-size: 19px;
  line-height: 26px;
  font-weight: 700;
}
.flexer-staff-grid .grid .item p.title {
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  color: #ffffff;
  margin-top: 8px;
  opacity: 0.6;
}
.flexer-staff-grid .grid .item .btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: auto;
}
.flexer-staff-grid .grid .item .btn-wrapper a.btn {
  display: flex;
  justify-content: center;
  padding: 6px 14px 7px 14px;
  font-size: 15.6px;
  line-height: 26px;
  font-weight: 700;
  color: #d03628;
  cursor: pointer;
  margin-right: 8px;
  margin-top: 22px;
  white-space: nowrap;
}
.flexer-staff-grid .grid .item .btn-wrapper a.btn.secondary {
  background: #d03628;
  color: #d03628;
  border-radius: 4px;
}

/* -------------------------------------------------------
   STAFF POPUP/MODAL
------------------------------------------------------- */
.flexer-staff-popup-content {
  position: relative;
  max-width: 440px;
  width: 90%;
  margin: 20px auto;
  background-color: #ffffff;
  color: #000000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.flexer-staff-popup-content img {
  display: block;
  width: 100%;
  height: auto;
}
.flexer-staff-popup-content .content {
  padding: 46px 30px 56px 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.flexer-staff-popup-content .content h3 {
  font-size: 28px;
  line-height: 43px;
  font-weight: 700;
  margin-bottom: 6px;
}
.flexer-staff-popup-content .content h4 {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 32px;
  font-weight: 500;
  opacity: 0.6;
}
.flexer-staff-popup-content .content p {
  font-size: 15.6px;
  line-height: 24px;
  margin-bottom: 26px;
}
.flexer-staff-popup-content .content a.phone,
.flexer-staff-popup-content .content .email {
  display: block;
  color: #000000;
  font-weight: 700;
}
.flexer-staff-popup-content .content a.phone {
  margin-bottom: 10px;
  color: #d03628;
}
.flexer-staff-popup-content .content i.theme-icon {
  padding-right: 12px;
  top: 8px;
}
.flexer-staff-popup-content .content i.theme-icon:before {
  background: #000000;
}
.flexer-staff-popup-content .content i.theme-icon.icons-phone-20:before {
  background: #d03628;
}
.flexer-staff-popup-content .content .booking-grid-link {
  width: 100%;
  margin-top: 32px;
}
.flexer-staff-popup-content .content .booking-grid-link.disabled {
  background-color: #dfdfdf;
  border-color: #dfdfdf;
}
.flexer-staff-popup-content .content .booking-grid-link.disabled:hover {
  cursor: default;
  opacity: 1;
}

/* -------------------------------------------------------
   PRIVACY POLICY POPUP/MODAL
------------------------------------------------------- */
#Flexer-privacy-policy-popup {
  position: relative;
  max-width: 640px;
  width: 90%;
  margin: 20px auto;
  background-color: #ffffff;
  color: #000000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 48px 40px 70px 40px;
  border-radius: 2px;
}
#Flexer-privacy-policy-popup .flexer-privacy-policy-container h2 {
  font-size: 26px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 0;
}
#Flexer-privacy-policy-popup .flexer-privacy-policy-container p.updated {
  font-family: "filson-pro", sans-serif;
  font-size: 13.6px;
  line-height: 26px;
  font-weight: 300;
  margin-top: 8px;
  margin-bottom: 36px;
  color: #707070;
}
#Flexer-privacy-policy-popup .flexer-privacy-policy-container .flexer-accordion-menu .heading {
  padding: 10px 16px !important;
  background-color: #d03628 !important;
  border-radius: 2px !important;
}
#Flexer-privacy-policy-popup .flexer-privacy-policy-container .flexer-accordion-menu .heading h4.flexer-dropdown {
  color: #ffffff;
  font-size: 14.6px;
  font-family: "filson-pro", sans-serif;
  line-height: 26px;
  padding: unset;
}
#Flexer-privacy-policy-popup .flexer-privacy-policy-container .flexer-accordion-menu .heading h4.flexer-dropdown span.icon:before {
  width: 20px;
  height: 20px;
  background: #ffffff;
}
@media only screen and (max-width: 429px) {
  #Flexer-privacy-policy-popup .flexer-privacy-policy-container .flexer-accordion-menu .heading h4.flexer-dropdown {
    font-size: 13px;
    padding-right: 46px;
  }
}
#Flexer-privacy-policy-popup .flexer-privacy-policy-container .flexer-accordion-menu .content {
  padding: 26px 10px 36px 10px !important;
}
#Flexer-privacy-policy-popup .flexer-privacy-policy-container .flexer-accordion-menu .content p {
  font-size: 13.6px !important;
  line-height: 23.6px !important;
}

/* ----------------------------------------------------------------------------------------------------------------
   FLEXER BUILDER / COLUMN MODULES
----------------------------------------------------------------------------------------------------------------- */
.flexer-headings-and-content.narrow,
.flexer-image.narrow,
.flexer-youtube-video.narrow,
.flexer-code.narrow,
.flexer-accordion-menu.narrow {
  width: 76%;
  margin-left: 12%;
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .flexer-headings-and-content.narrow,
  .flexer-image.narrow,
  .flexer-youtube-video.narrow,
  .flexer-code.narrow,
  .flexer-accordion-menu.narrow {
    width: 84%;
    margin-left: 8%;
  }
}
@media only screen and (max-width: 767px) {
  .flexer-headings-and-content.narrow,
  .flexer-image.narrow,
  .flexer-youtube-video.narrow,
  .flexer-code.narrow,
  .flexer-accordion-menu.narrow {
    width: 100%;
    margin-left: 0;
  }
}

/* Headings & Content 
----------------------------------------------------------------------------------------------------------------- */
.flexer-headings-and-content.float-content-center h2, .flexer-headings-and-content.float-content-center h3, .flexer-headings-and-content.float-content-center h4, .flexer-headings-and-content.float-content-center h5, .flexer-headings-and-content.float-content-center h6, .flexer-headings-and-content.float-content-center p {
  text-align: center;
}
.flexer-headings-and-content.float-content-right h2, .flexer-headings-and-content.float-content-right h3, .flexer-headings-and-content.float-content-right h4, .flexer-headings-and-content.float-content-right h5, .flexer-headings-and-content.float-content-right h6, .flexer-headings-and-content.float-content-right p {
  text-align: right;
}
.flexer-headings-and-content p:last-child {
  margin-bottom: 0;
}
.flexer-headings-and-content .content.notification-bar {
  position: relative;
  padding-left: 30px;
}
.flexer-headings-and-content .content.notification-bar:before {
  content: "";
  position: absolute;
  display: block;
  top: -4px;
  left: 0;
  width: 6px;
  height: -moz-calc(100% + 8px);
  height: -webkit-calc(100% + 8px);
  height: calc(100% + 8px);
  background-color: #d03628;
}

/* Apartments
----------------------------------------------------------------------------------------------------------------- */
.flexer-cars {
  display: flex;
  flex-wrap: wrap;
  margin-top: -20px;
}
.flexer-cars .item {
  margin-top: 20px;
  margin-right: 20px;
  box-sizing: border-box;
  background: #ffffff;
  border: 0.5px solid #E5E5E5;
  border-radius: 16px;
  -webkit-box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.08);
}
@media only screen and (min-width: 960px) {
  .flexer-cars .item {
    width: -moz-calc(( 100% - 40px ) / 3);
    width: -webkit-calc(( 100% - 40px ) / 3);
    width: calc(( 100% - 40px ) / 3);
  }
  .flexer-cars .item:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .flexer-cars .item {
    width: -moz-calc(( 100% - 20px ) / 2);
    width: -webkit-calc(( 100% - 20px ) / 2);
    width: calc(( 100% - 20px ) / 2);
  }
  .flexer-cars .item:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .flexer-cars .item {
    width: 100%;
    margin-right: 0;
  }
}
.flexer-cars .item .img-wrapper {
  position: relative;
  position: relative;
  /* Select only direct children */
  margin-bottom: 26px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.flexer-cars .item .img-wrapper:after {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}
.flexer-cars .item .img-wrapper > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.flexer-cars .item .img-wrapper img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  object-position: 50% 50%;
}
.flexer-cars .item .heading,
.flexer-cars .item .short-description,
.flexer-cars .item .footer {
  padding-right: 28px;
  padding-left: 28px;
  box-sizing: border-box;
}
.flexer-cars .item .heading {
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
}
.flexer-cars .item .short-description {
  font-size: 14.6px;
  line-height: 22px;
  font-weight: 300;
  margin: 20px 0 32px 0;
}
.flexer-cars .item .footer {
  margin-bottom: 30px;
}

/* Distances
----------------------------------------------------------------------------------------------------------------- */
.flexer-distances .item {
  display: flex;
  flex-wrap: nowrap;
  height: 56px;
  margin-bottom: 10px;
}
.flexer-distances .item:last-child {
  margin-bottom: 0;
}
.flexer-distances .item .activity,
.flexer-distances .item .distance {
  padding: 0 26px;
  font-size: 17px;
  line-height: 56px;
  font-weight: 500;
  box-sizing: border-box;
}
.flexer-distances .item .activity {
  flex-grow: 1;
  background: #EBEFEC;
  border-radius: 4px 0 0 4px;
}
.flexer-distances .item .distance {
  min-width: 108px;
  background: #DBE3DD;
  border-radius: 0 4px 4px 0;
}

/* Image 
----------------------------------------------------------------------------------------------------------------- */
.flexer-image.circle {
  border-radius: 50%;
  overflow: hidden;
}
.flexer-image img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* Lounge Links
----------------------------------------------------------------------------------------------------------------- */
.flexer-lounge-links {
  margin-top: -50px;
  *zoom: 1;
}
.flexer-lounge-links:before, .flexer-lounge-links:after {
  content: " ";
  display: table;
}
.flexer-lounge-links:after {
  clear: both;
}
.flexer-lounge-links .link {
  float: left;
  margin-top: 50px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transform-style: preserve-3d;
}
.flexer-lounge-links .link .image-wrapper {
  position: relative;
  border-radius: 1000px;
  width: 260px;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  -ms-transform: translate3d(-50%, 0, 0);
  -o-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  overflow: hidden;
  z-index: 10;
}
.flexer-lounge-links .link .image-wrapper a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 20;
}
.flexer-lounge-links .link .image-wrapper .gradient {
  position: absolute;
  bottom: -4px;
  left: -4px;
  width: -moz-calc(100% + 8px);
  width: -webkit-calc(100% + 8px);
  width: calc(100% + 8px);
  height: 36%;
  background: -webkit-linear-gradient(0deg, #ffffff 10%, transparent 100%);
  background: -o-linear-gradient(0deg, #ffffff 10%, transparent 100%);
  background: linear-gradient(0deg, #ffffff 10%, transparent 100%);
  z-index: 10;
}
.flexer-lounge-links .link .image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}
.flexer-lounge-links .link .headings-wrapper {
  position: relative;
  z-index: 20;
  margin-top: 20px;
  margin-bottom: 36px;
}
.flexer-lounge-links .link .headings-wrapper .heading {
  font-size: 24px;
  line-height: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
.flexer-lounge-links .link .headings-wrapper .subheading {
  position: relative;
  font-size: 15.6px;
  font-weight: 300;
  text-align: center;
  width: 90%;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  -ms-transform: translate3d(-50%, 0, 0);
  -o-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  margin-top: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.flexer-lounge-links .link .read-more-wrapper {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  height: 52px;
  margin-bottom: 30px;
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  -ms-transform: translate3d(-50%, 0, 0);
  -o-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  padding: 0 60px;
  color: #ffffff;
  font-weight: 700;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  -ms-border-radius: 26px;
  border-radius: 26px;
  background-color: #d03628;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}
.flexer-lounge-links .link .read-more-wrapper a {
  display: flex;
  color: #ffffff;
}
.flexer-lounge-links .link .read-more-wrapper i.theme-icon {
  top: -1px;
  margin-left: 7px;
}
.flexer-lounge-links .link .read-more-wrapper:hover {
  color: #ffffff;
  background-color: #d03628;
  -webkit-box-shadow: 0 0 30px 0 rgba(208, 54, 40, 0.5);
  -moz-box-shadow: 0 0 30px 0 rgba(208, 54, 40, 0.5);
  box-shadow: 0 0 30px 0 rgba(208, 54, 40, 0.5);
  opacity: 1 !important;
}
@media only screen and (min-width: 1240px) {
  .flexer-lounge-links.size-two .link {
    width: -moz-calc(100% / 2);
    width: -webkit-calc(100% / 2);
    width: calc(100% / 2);
  }
  .flexer-lounge-links.size-three .link {
    width: -moz-calc(100% / 3);
    width: -webkit-calc(100% / 3);
    width: calc(100% / 3);
  }
  .flexer-lounge-links.size-four .link {
    width: -moz-calc(100% / 4);
    width: -webkit-calc(100% / 4);
    width: calc(100% / 4);
  }
}
@media only screen and (max-width: 1239px) {
  .flexer-lounge-links .link .headings-wrappe .heading {
    font-size: 28px;
    line-height: 32px;
  }
  .flexer-lounge-links .link .headings-wrappe .subheading {
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  .flexer-lounge-links.size-four .link {
    width: -moz-calc(100% / 3);
    width: -webkit-calc(100% / 3);
    width: calc(100% / 3);
  }
}
@media only screen and (max-width: 767px) {
  .flexer-lounge-links.size-two .link, .flexer-lounge-links.size-three .link, .flexer-lounge-links.size-four .link {
    width: 100%;
    margin-right: 0;
  }
}

/* Youtube Video 
----------------------------------------------------------------------------------------------------------------- */
.flexer-youtube-video {
  position: relative;
  overflow: hidden;
}
.flexer-youtube-video.normal {
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.flexer-youtube-video.normal iframe,
.flexer-youtube-video.normal object,
.flexer-youtube-video.normal embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.flexer-youtube-video.modal {
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.22);
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.22);
}
.flexer-youtube-video.modal a.link-area {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 40;
}
.flexer-youtube-video.modal span.icon {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  width: 60px;
  height: 60px;
  z-index: 30;
}
.flexer-youtube-video.modal span.icon:before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-play.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-play.svg) no-repeat 50% 50%;
  width: 56px;
  height: 56px;
  background-color: #d03628;
  -webkit-transition: all 0.14s ease-in-out;
  -moz-transition: all 0.14s ease-in-out;
  -ms-transition: all 0.14s ease-in-out;
  -o-transition: all 0.14s ease-in-out;
  transition: all 0.14s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
.flexer-youtube-video.modal:not(:hover) span.icon:before {
  top: 2px;
  left: 2px;
  animation: pulse;
  animation-duration: 1.5s;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.flexer-youtube-video.modal .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 20;
}
.flexer-youtube-video.modal .mask.dark {
  background-color: #0a0a0a;
}
.flexer-youtube-video.modal .mask.light {
  background-color: #ffffff;
}
.flexer-youtube-video.modal .cover-image {
  position: relative;
  width: 100%;
  position: relative;
  /* Select only direct children */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 10;
}
.flexer-youtube-video.modal .cover-image:after {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}
.flexer-youtube-video.modal .cover-image > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.flexer-youtube-video.modal:hover span.icon:before {
  width: 60px;
  height: 60px;
  background-color: #d03628;
}
.flexer-youtube-video.modal:hover .mask {
  opacity: 0.5;
}
.flexer-youtube-video.modal.blinked:not(:hover) span.icon:before {
  width: 57px;
  height: 57px;
  background-color: #d03628;
}
.flexer-youtube-video.modal.blinked:not(:hover) .mask {
  opacity: 0.1;
}

.flexer-video-container {
  position: relative;
}
.flexer-video-container .video {
  position: relative;
  width: 100%;
  height: auto;
}

/* Accordion menu
----------------------------------------------------------------------------------------------------------------- */
.flexer-accordion-menu .item-dropdown,
.flexer-accordion-menu .item-magnific {
  margin-bottom: 12px;
}
.flexer-accordion-menu .item-dropdown .heading,
.flexer-accordion-menu .item-magnific .heading {
  position: relative;
  background-color: #d03628;
  padding: 18px 0;
  cursor: pointer;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.12s ease-in-out;
  -moz-transition: all 0.12s ease-in-out;
  -ms-transition: all 0.12s ease-in-out;
  -o-transition: all 0.12s ease-in-out;
  transition: all 0.12s ease-in-out;
}
.flexer-accordion-menu .item-dropdown .heading h4,
.flexer-accordion-menu .item-magnific .heading h4 {
  font-size: 18px;
  line-height: 22px;
  margin: 0;
  padding-left: 26px;
  padding-right: 82px;
  color: #ffffff;
  font-weight: 700;
  font-style: normal;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.flexer-accordion-menu .item-dropdown .heading h4 span.icon,
.flexer-accordion-menu .item-magnific .heading h4 span.icon {
  position: absolute;
  display: inline-block;
  top: 50%;
  -webkit-transform: translate3d(0, -15px, 0);
  -moz-transform: translate3d(0, -15px, 0);
  -ms-transform: translate3d(0, -15px, 0);
  -o-transform: translate3d(0, -15px, 0);
  transform: translate3d(0, -15px, 0);
  right: 30px;
  width: 30px;
  height: 30px;
}
.flexer-accordion-menu .item-dropdown .heading h4 span.icon:before,
.flexer-accordion-menu .item-magnific .heading h4 span.icon:before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-caret-down.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-caret-down.svg) no-repeat 50% 50%;
  background-color: #ffffff;
  width: 30px;
  height: 30px;
}
@media only screen and (min-width: 1240px) {
  .flexer-accordion-menu .item-dropdown .heading:hover,
  .flexer-accordion-menu .item-magnific .heading:hover {
    -webkit-box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.4);
    -moz-box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.4);
  }
}
.flexer-accordion-menu .item-dropdown .content {
  display: none;
  background-color: transparent;
  padding: 40px 32px 50px 32px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.flexer-accordion-menu .item-dropdown .content p {
  font-size: 15.6px;
  line-height: 26px;
  font-weight: 300;
  font-style: normal !important;
}
.flexer-accordion-menu .item-dropdown .content ul {
  margin-bottom: 30px;
}
.flexer-accordion-menu .item-dropdown .content ul:last-child {
  margin-bottom: 0;
}
.flexer-accordion-menu .item-dropdown .content ul li {
  opacity: 1;
  color: #000000;
  font-weight: 500;
}
.flexer-accordion-menu .item-dropdown .content h4 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  font-style: italic;
  margin-top: 34px;
}
.flexer-accordion-menu .item-dropdown .content p:last-child {
  margin-bottom: 0;
}
.flexer-accordion-menu .item-dropdown.active .heading h4 span.icon:before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-caret-up.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-caret-up.svg) no-repeat 50% 50%;
}
.flexer-accordion-menu .item-dropdown.active .heading {
  background-color: #000000;
}
.flexer-accordion-menu .item-dropdown.active .content {
  display: block;
}
@media only screen and (max-width: 767px) {
  .flexer-accordion-menu .heading h4 {
    font-size: 16px !important;
  }
  .flexer-accordion-menu .item-dropdown .content {
    padding: 36px 32px 46px 32px !important;
  }
}

/* Smooth Anchor Link
----------------------------------------------------------------------------------------------------------------- */
.flexer-smooth-scroll-anchor {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 1px;
  opacity: 0;
}

/* Placeholder 
----------------------------------------------------------------------------------------------------------------- */
.flexer-placeholder {
  height: 1px;
}
@media only screen and (max-width: 767px) {
  .flexer-placeholder {
    display: none;
  }
}

/* Google maps

---------------------- */
.flexer-google-map {
  width: 100%;
  height: 560px;
  border: none !important;
  margin: 0;
  background: gray;
}
.flexer-google-map img {
  max-width: inherit !important;
}

/* ------------------------------------
   BLOG POST MODULES
------------------------------------- */
body.single-blog-cpt #Content,
body.single-campaigns-cpt #Content {
  /* Module - Paragraph
   --------------------------------------------------- */
  /* Module - Quotation
  --------------------------------------------------- */
  /* Module - Image
  --------------------------------------------------- */
  /* Module - Youtube Video
  --------------------------------------------------- */
  /* Module - Newsletter
  --------------------------------------------------- */
  /* Module - Product Slider
  --------------------------------------------------- */
  /* Module - Divider
   --------------------------------------------------- */
}
body.single-blog-cpt #Content div.flexer-blog-post-paragraph h3,
body.single-campaigns-cpt #Content div.flexer-blog-post-paragraph h3 {
  margin-bottom: 1.3em;
  font-size: 1.6em;
  line-height: 1.32;
  opacity: 1;
  font-style: italic;
  font-weight: 700;
}
body.single-blog-cpt #Content div.flexer-blog-post-paragraph h4,
body.single-campaigns-cpt #Content div.flexer-blog-post-paragraph h4 {
  margin-bottom: 1.2em;
  font-size: 1.4em;
  line-height: 1.32;
  opacity: 1;
  font-style: italic;
  font-weight: 700;
}
body.single-blog-cpt #Content div.flexer-blog-post-paragraph p:last-child,
body.single-campaigns-cpt #Content div.flexer-blog-post-paragraph p:last-child {
  margin-bottom: 0;
}
body.single-blog-cpt #Content div.flexer-blog-post-paragraph ul,
body.single-campaigns-cpt #Content div.flexer-blog-post-paragraph ul {
  margin-top: 38px;
  margin-bottom: 46px;
}
body.single-blog-cpt #Content div.flexer-blog-post-paragraph ul li,
body.single-campaigns-cpt #Content div.flexer-blog-post-paragraph ul li {
  position: relative;
  margin-bottom: 0.9em !important;
  color: #0d0d0d;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body.single-blog-cpt #Content div.flexer-blog-post-paragraph ul li:before,
body.single-campaigns-cpt #Content div.flexer-blog-post-paragraph ul li:before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-check.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-check.svg) no-repeat 50% 50%;
  width: 18px;
  height: 18px;
  left: -20px;
  background-color: #d03628;
}
body.single-blog-cpt #Content div.flexer-blog-post-quotation,
body.single-campaigns-cpt #Content div.flexer-blog-post-quotation {
  position: relative;
  padding: 10px 26px 18px 36px;
  border-left: 4px solid #d03628;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body.single-blog-cpt #Content div.flexer-blog-post-quotation .quotation,
body.single-blog-cpt #Content div.flexer-blog-post-quotation .speaker,
body.single-campaigns-cpt #Content div.flexer-blog-post-quotation .quotation,
body.single-campaigns-cpt #Content div.flexer-blog-post-quotation .speaker {
  font-style: italic;
  color: #000000;
  opacity: 0.6;
}
body.single-blog-cpt #Content div.flexer-blog-post-quotation .quotation,
body.single-campaigns-cpt #Content div.flexer-blog-post-quotation .quotation {
  margin-bottom: 16px;
  font-size: 1.46em;
  line-height: 1.36;
  font-weight: 700;
}
body.single-blog-cpt #Content div.flexer-blog-post-quotation .speaker,
body.single-campaigns-cpt #Content div.flexer-blog-post-quotation .speaker {
  font-size: 1.05em;
  font-weight: 400;
}
body.single-blog-cpt #Content div.flexer-blog-post-image,
body.single-campaigns-cpt #Content div.flexer-blog-post-image {
  position: relative;
  margin-right: 4%;
}
@media only screen and (max-width: 959px) {
  body.single-blog-cpt #Content div.flexer-blog-post-image,
  body.single-campaigns-cpt #Content div.flexer-blog-post-image {
    margin-right: 0;
  }
}
body.single-blog-cpt #Content div.flexer-blog-post-image a.link-area,
body.single-campaigns-cpt #Content div.flexer-blog-post-image a.link-area {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 10;
}
body.single-blog-cpt #Content div.flexer-blog-post-image a.link-area:hover,
body.single-campaigns-cpt #Content div.flexer-blog-post-image a.link-area:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
body.single-blog-cpt #Content div.flexer-blog-post-image img,
body.single-campaigns-cpt #Content div.flexer-blog-post-image img {
  display: block;
  width: 100%;
  height: auto;
}
body.single-blog-cpt #Content div.flexer-blog-post-image .image-caption,
body.single-campaigns-cpt #Content div.flexer-blog-post-image .image-caption {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 8px;
  margin-bottom: -12px;
}
body.single-blog-cpt #Content div.flexer-blog-post-video,
body.single-campaigns-cpt #Content div.flexer-blog-post-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 96%;
  height: auto;
}
@media only screen and (max-width: 959px) {
  body.single-blog-cpt #Content div.flexer-blog-post-video,
  body.single-campaigns-cpt #Content div.flexer-blog-post-video {
    width: 100%;
  }
}
body.single-blog-cpt #Content div.flexer-blog-post-video iframe, body.single-blog-cpt #Content div.flexer-blog-post-video object, body.single-blog-cpt #Content div.flexer-blog-post-video embed,
body.single-campaigns-cpt #Content div.flexer-blog-post-video iframe,
body.single-campaigns-cpt #Content div.flexer-blog-post-video object,
body.single-campaigns-cpt #Content div.flexer-blog-post-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.single-blog-cpt #Content div.flexer-blog-post-newsletter,
body.single-campaigns-cpt #Content div.flexer-blog-post-newsletter {
  background-color: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right bottom;
  margin-right: 4%;
  padding: 54px 30px 68px 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 959px) {
  body.single-blog-cpt #Content div.flexer-blog-post-newsletter,
  body.single-campaigns-cpt #Content div.flexer-blog-post-newsletter {
    margin-right: 0;
  }
}
body.single-blog-cpt #Content div.flexer-blog-post-newsletter div.heading,
body.single-blog-cpt #Content div.flexer-blog-post-newsletter div.subheading,
body.single-campaigns-cpt #Content div.flexer-blog-post-newsletter div.heading,
body.single-campaigns-cpt #Content div.flexer-blog-post-newsletter div.subheading {
  text-align: center;
  color: #000000;
}
body.single-blog-cpt #Content div.flexer-blog-post-newsletter div.heading,
body.single-campaigns-cpt #Content div.flexer-blog-post-newsletter div.heading {
  margin-bottom: 12px;
  font-family: "filson-pro", sans-serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.2;
}
body.single-blog-cpt #Content div.flexer-blog-post-newsletter div.subheading,
body.single-campaigns-cpt #Content div.flexer-blog-post-newsletter div.subheading {
  margin-bottom: 28px;
  font-family: "filson-pro", sans-serif;
  font-size: 1.26em;
  font-weight: 400;
}
body.single-blog-cpt #Content div.flexer-blog-post-newsletter form.mc-signup-form div.news-letter-wrapper input.button,
body.single-campaigns-cpt #Content div.flexer-blog-post-newsletter form.mc-signup-form div.news-letter-wrapper input.button {
  background: #000000;
}
body.single-blog-cpt #Content div.flexer-blog-post-newsletter form.mc-signup-form div.news-letter-wrapper input.button:hover,
body.single-campaigns-cpt #Content div.flexer-blog-post-newsletter form.mc-signup-form div.news-letter-wrapper input.button:hover {
  background: #0d0d0d;
}
body.single-blog-cpt #Content div.flexer-blog-post-newsletter form.mc-signup-form div.news-letter-wrapper input.button:focus,
body.single-campaigns-cpt #Content div.flexer-blog-post-newsletter form.mc-signup-form div.news-letter-wrapper input.button:focus {
  outline: none;
  background: black;
}
body.single-blog-cpt #Content div.flexer-blog-post-divider.height-normal,
body.single-campaigns-cpt #Content div.flexer-blog-post-divider.height-normal {
  height: 46px;
}
body.single-blog-cpt #Content div.flexer-blog-post-divider.height-low,
body.single-campaigns-cpt #Content div.flexer-blog-post-divider.height-low {
  height: 26px;
}
body.single-blog-cpt #Content div.flexer-blog-post-divider.height-tall,
body.single-campaigns-cpt #Content div.flexer-blog-post-divider.height-tall {
  height: 66px;
}

@media only screen and (max-width: 759px) {
  body.single-blog-cpt div.flexer-content-wrapper > div.flexer-heading > h2.subheading.title-wrapper {
    font-size: 0.9em !important;
    font-style: italic !important;
    font-weight: 400 !important;
  }
}
/* -------------------------------------------------------
   CONTACT FORM
------------------------------------------------------- */
.flexer-contact-form-wrapper .heading {
  font-size: 40px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 14px;
  text-align: center;
}
.flexer-contact-form-wrapper .subheading {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 70px;
  text-align: center;
  color: #626262;
}
@media only screen and (max-width: 767px) {
  .flexer-contact-form-wrapper .heading {
    font-size: 28px;
    line-height: 32px;
  }
  .flexer-contact-form-wrapper .subheading {
    font-size: 15.6px;
    margin-bottom: 46px;
  }
}
.flexer-contact-form-wrapper form#Flexer-contact-form {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  font-family: "filson-pro", sans-serif;
}
.flexer-contact-form-wrapper form#Flexer-contact-form .step {
  display: none;
  flex-wrap: wrap;
}
.flexer-contact-form-wrapper form#Flexer-contact-form.ajax-load {
  pointer-events: none;
  opacity: 0.4;
}
.flexer-contact-form-wrapper form#Flexer-contact-form div.item {
  position: relative;
  width: -moz-calc((100% - 26px) / 2);
  width: -webkit-calc((100% - 26px) / 2);
  width: calc((100% - 26px) / 2);
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .flexer-contact-form-wrapper form#Flexer-contact-form div.item {
    width: 100% !important;
  }
  .flexer-contact-form-wrapper form#Flexer-contact-form div.item:nth-of-type(2n+1) {
    margin-right: 0 !important;
  }
}
.flexer-contact-form-wrapper form#Flexer-contact-form div.item:nth-of-type(2n+1) {
  margin-right: 26px;
}
.flexer-contact-form-wrapper form#Flexer-contact-form div.item label {
  font-size: 15.6px;
  font-weight: 700;
  margin-bottom: 12px;
}
.flexer-contact-form-wrapper form#Flexer-contact-form div.item label span.required {
  color: #D63D0F;
  font-weight: 300;
}
.flexer-contact-form-wrapper form#Flexer-contact-form div.item input {
  height: 56px;
  border-radius: 12px;
  border: 1px solid #A4A4B0;
  outline: none;
  font-family: "filson-pro", sans-serif;
  font-size: 15.6px;
  padding-left: 20px;
  padding-bottom: 4px;
  background: #F7F7F7;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.flexer-contact-form-wrapper form#Flexer-contact-form div.item input:focus-visible {
  border: 1px solid #A4A4B0;
  box-shadow: 0px 3px 20px rgba(36, 51, 45, 0.2);
}
.flexer-contact-form-wrapper form#Flexer-contact-form div.item input.validated {
  border: 1px solid #6DAC3B;
}
.flexer-contact-form-wrapper form#Flexer-contact-form div.item input.invalidated {
  border: 1px solid #D63D0F;
}
.flexer-contact-form-wrapper form#Flexer-contact-form div.item input.hidden {
  display: none;
}
.flexer-contact-form-wrapper form#Flexer-contact-form div.item input[type=file] {
  border-radius: unset;
  border: unset;
  padding-left: 0;
}
.flexer-contact-form-wrapper form#Flexer-contact-form div.item span.icon {
  position: absolute;
  width: 56px;
  height: 56px;
  top: 37px;
  right: 0px;
  pointer-events: none;
}
.flexer-contact-form-wrapper form#Flexer-contact-form div.item span.icon:before {
  width: 24px;
  height: 24px;
  background-color: #8D8D8D;
}
.flexer-contact-form-wrapper form#Flexer-contact-form div.item span.icon.upload {
  top: 42px;
  right: 26px;
}
@media only screen and (max-width: 767px) {
  .flexer-contact-form-wrapper form#Flexer-contact-form div.item span.icon.upload {
    top: 45px;
    right: 0;
  }
}
.flexer-contact-form-wrapper form#Flexer-contact-form div.item span.icon.calendar:before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-calendar.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-calendar.svg) no-repeat 50% 50%;
}
.flexer-contact-form-wrapper form#Flexer-contact-form div.item span.icon.upload:before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-upload.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-upload.svg) no-repeat 50% 50%;
}
.flexer-contact-form-wrapper form#Flexer-contact-form div.item.full-width {
  width: 100%;
  margin-right: 0;
}
.flexer-contact-form-wrapper form#Flexer-contact-form div.item.full-width textarea {
  height: 168px;
  border-radius: 12px;
  border: 1px solid #A4A4B0;
  outline: none;
  font-family: "filson-pro", sans-serif;
  font-size: 15.6px;
  padding-left: 20px;
  padding-top: 15px;
  resize: none;
}
.flexer-contact-form-wrapper form#Flexer-contact-form div.item textarea.info {
  background: #F7F7F7;
}
.flexer-contact-form-wrapper form#Flexer-contact-form div.item textarea.info:focus-visible {
  border: 1px solid #A4A4B0;
  box-shadow: 0px 3px 20px rgba(36, 51, 45, 0.2);
}
.flexer-contact-form-wrapper form#Flexer-contact-form button.submit {
  width: 100%;
  height: 62px;
  background: #d03628;
  border-radius: 6px;
  color: #ffffff;
  border: none;
  font-family: "filson-pro", sans-serif;
  font-size: 15.6px;
  font-weight: 700;
  padding-bottom: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  letter-spacing: -0.31px;
  margin-top: 25px;
  opacity: 1;
  cursor: pointer;
}
.flexer-contact-form-wrapper form#Flexer-contact-form button.submit.hidden {
  display: none;
}
@media only screen and (min-width: 1240px) {
  .flexer-contact-form-wrapper form#Flexer-contact-form button.submit:hover {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 380px) {
  .flexer-contact-form-wrapper form#Flexer-contact-form button.submit {
    font-size: 16px;
  }
  .flexer-contact-form-wrapper form#Flexer-contact-form button.submit span.icon {
    display: none;
  }
}
.flexer-contact-form-wrapper form#Flexer-contact-form button.submit:disabled {
  opacity: 0.4;
  pointer-events: none;
}

div.successful-email-notification {
  display: block;
  position: fixed;
  bottom: 26px;
  right: -3000px;
  z-index: 9999;
  background: #fff;
  color: black;
  padding: 20px 30px 22px 30px;
  border-radius: 6px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  border-left: 12px solid #ffffff;
  font-size: 15px;
}
div.successful-email-notification.success {
  right: 26px;
  border-left: 12px solid #d03628;
}
div.successful-email-notification.error {
  right: 26px;
  border-left: 12px solid #D63D0F;
}

/* ------------------------------------------------------------
   RANGE SLIDER
------------------------------------------------------------- */
.range-selector {
  margin-top: 0;
}

input[type=number].range-selector {
  display: none;
  visibility: hidden;
  width: 0;
  height: 0;
}

.range-selector {
  margin-top: 24px;
}

.range-selector + .range-selector-wrapper {
  position: relative;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1239px) {
  .range-selector + .range-selector-wrapper {
    margin-top: 30px;
  }
}
.range-selector + .range-selector-wrapper.touchmove .range-track .range-handle, .range-selector + .range-selector-wrapper.mousemove .range-track .range-handle {
  -webkit-box-shadow: 0 0 20px 0 rgba(208, 54, 40, 0.3);
  -moz-box-shadow: 0 0 20px 0 rgba(208, 54, 40, 0.3);
  box-shadow: 0 0 20px 0 rgba(208, 54, 40, 0.3);
}
.range-selector + .range-selector-wrapper .range-track {
  width: 100%;
  height: 1px;
  padding: 0 2px;
  background: transparent;
  box-sizing: border-box;
}
.range-selector + .range-selector-wrapper .range-track:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0;
  height: 100%;
  cursor: pointer;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.4);
}
.range-selector + .range-selector-wrapper .range-track .range-handle {
  position: absolute;
  height: 31px;
  width: 31px;
  left: 0;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  background: #d03628;
  border-radius: 25px;
  cursor: pointer;
  touch-action: none;
  user-select: none;
  -webkit-box-shadow: 4px 4px 10px 0 rgba(0, 0, 41, 0.15);
  -moz-box-shadow: 4px 4px 10px 0 rgba(0, 0, 41, 0.15);
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 41, 0.15);
  z-index: 9;
}
.range-selector + .range-selector-wrapper .range-track .range-handle:after {
  content: "";
  position: absolute;
  width: 100%;
  left: -100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 20px;
  height: 100%;
  cursor: pointer;
}
.range-selector + .range-selector-wrapper .range-track .range-handle .value-placeholder {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -30px;
  font-weight: bold;
}
.range-selector + .range-selector-wrapper .range-track .range-handle.validated {
  display: none;
}
.range-selector + .range-selector-wrapper .validator-hint {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -moz-transform-origin: 0 0;
  background: #000000;
  border: none;
  opacity: 0.2;
  overflow: hidden;
}
.range-selector + .range-selector-wrapper .validator-hint #checkmark {
  display: none;
  background: #d03628;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1607843137);
  width: 100%;
  height: 100%;
}
.range-selector + .range-selector-wrapper .validator-hint.valid {
  background: #fff !important;
  scale: 1.05 !important;
  opacity: 1 !important;
  border: none !important;
  z-index: 999;
  -webkit-box-shadow: 4px 4px 10px 0 rgba(0, 0, 41, 0.15);
  -moz-box-shadow: 4px 4px 10px 0 rgba(0, 0, 41, 0.15);
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 41, 0.15);
}
.range-selector + .range-selector-wrapper .validator-hint.valid #checkmark {
  display: block;
}
.range-selector + .range-selector-wrapper .validator-hint.valid #checkmark:before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-check.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-check.svg) no-repeat 50% 50%;
  background-color: #ffffff;
  height: 15px;
}

/* -------------------------------------------------------

   MAGNIFIC POPUPS

------------------------------------------------------- */
.flexer-magnific-popup {
  position: relative;
  max-width: 680px;
  width: 94%;
  padding: 40px 46px 58px 46px;
  margin: 10px auto;
  background-color: #ffffff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  /* Modify font-sizes via _typography.scss */
}

/* CUSTOMIZED CSS FOR MAGNIFIC POPUP */
.mfp-preloader {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1044;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  margin: 0 auto;
  -webkit-animation: flexer-rotateplane 1.2s infinite ease-in-out;
  animation: flexer-rotateplane 1.2s infinite ease-in-out;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-ajax-cur {
  cursor: progress;
} /* Cursor durin ajax call */
.mfp-hide {
  display: none !important;
}

.mfp-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; /*background: #0e0e0e;*/
  background-color: #0F0B2A;
  opacity: 0.8; /*backdrop-filter: blur(2px); @include opacity(0.9);*/
  z-index: 1042;
}

.mfp-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none !important;
  -webkit-backface-visibility: hidden;
  z-index: 1043;
}

.mfp-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* Popup content holder */
.mfp-content {
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-loading .mfp-figure {
  display: none;
} /* Hide the image during the loading */
.mfp-s-error .mfp-content {
  display: none;
} /* Hide content when it was not loaded */
/* Vertical centerer helper, Remove vertical centering when popup has .mfp-align-top -class */
.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

/* CSS-reset for buttons */
.mfp-wrap button.mfp-close, .mfp-wrap button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  box-shadow: none;
  touch-action: manipulation;
  z-index: 1046;
}
.mfp-wrap button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  -webkit-border-radius: 0 2px 0 2px;
  -moz-border-radius: 0 2px 0 2px;
  -ms-border-radius: 0 2px 0 2px;
  border-radius: 0 2px 0 2px;
}

.mfp-close,
.mfp-arrow {
  position: absolute;
  display: block;
  width: 64px;
  height: 64px;
  background-color: transparent;
  color: #000000;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/* Hover states only for desktops */
@media only screen and (min-width: 1240px) {
  .mfp-iframe-holder .mfp-close:hover,
  .mfp-iframe-holder .mfp-arrow:hover,
  .mfp-image-holder .mfp-close:hover,
  .mfp-image-holder .mfp-arrow:hover {
    background-color: #7a2018;
  }
  .mfp-iframe-holder .mfp-close:hover,
  .mfp-image-holder .mfp-close:hover {
    background-color: #7a2018;
    color: #ffffff;
  }
  .dbg-magnific-popup.popup-type-booking-form .mfp-close:hover {
    background-color: #7a2018 !important;
  }
  .mfp-inline-holder .mfp-close:hover,
  .mfp-wrap:not(.mfp-gallery) .mfp-close:hover {
    width: 64px;
    background-color: transparent;
    color: #ffffff;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .mfp-inline-holder .mfp-close:hover:before,
  .mfp-wrap:not(.mfp-gallery) .mfp-close:hover:before {
    background: #7a2018;
  }
}
.mfp-iframe-holder .mfp-close,
.mfp-iframe-holder .mfp-arrow,
.mfp-image-holder .mfp-close,
.mfp-image-holder .mfp-arrow {
  right: 0;
}
.mfp-iframe-holder .mfp-arrow,
.mfp-image-holder .mfp-arrow {
  border-top: 1px solid #eaeaea;
}
.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
  top: 0;
}
.mfp-iframe-holder .mfp-arrow-left,
.mfp-image-holder .mfp-arrow-left {
  top: 65px;
}
.mfp-iframe-holder .mfp-arrow-right,
.mfp-image-holder .mfp-arrow-right {
  top: 130px;
}

.mfp-inline-holder .mfp-close {
  top: 18px;
  right: 18px;
}

.mfp-bottom-bar {
  position: absolute;
  display: block;
  top: 195px;
  right: 0;
  width: 64px;
  height: 64pxpx;
  cursor: default;
} /* Positioned to top! */
.mfp-counter {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  color: #ffffff;
  font-size: 11.3px;
  line-height: 64px;
  text-align: center;
  white-space: nowrap;
  background-color: #282828;
}

.mfp-wrap:not(.mfp-gallery) .mfp-bottom-bar,
.mfp-wrap:not(.mfp-gallery) .mfp-counter {
  display: none;
}

.mfp-title {
  display: none;
}

/* CONTENT TYPES: IMAGE */
img.mfp-img {
  width: auto;
  max-width: 80%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

/* GALLERY */
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

/* ALL MOBILE DEVICES ... 0 <-> 1239px */
@media only screen and (max-width: 1239px) {
  .mfp-close {
    width: 64px;
    height: 64px;
  }
  .mfp-close:before {
    font-size: 38px;
    line-height: 50px;
  }
  .mfp-arrow,
  .mfp-bottom-bar {
    display: none !important;
  }
  img.mfp-img {
    max-width: 94%;
  }
}
@media only screen and (max-width: 767px) {
  .mfp-close {
    width: 32px;
    height: 32px;
    top: 26px !important;
    right: 26px !important;
  }
  .mfp-close:before {
    width: 20px;
    height: 20px;
  }
}
.mfp-close:before {
  background: transparent !important;
}

#Flexer-contact-form-popup button.mfp-close {
  background: transparent !important;
  color: #fff;
}
#Flexer-contact-form-popup .mfp-close:before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-close.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-close.svg) no-repeat 50% 50%;
  background-color: #d03628 !important;
  width: 40px;
  height: 32px;
}

/* ------------------------------------
   MASTER
------------------------------------- */
html {
  background: #ffffff;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  min-height: 101%;
  overflow-x: hidden;
}
html.wf-active {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}
html.side-nav-active {
  overflow: hidden;
}

@media only screen and (max-width: 479px) {
  body.mfp-open {
    position: fixed;
    max-height: 100vh;
    width: 100%;
  }
  body.mfp-open .mfp-wrap {
    overflow: auto;
    top: 0 !important;
  }
}

picture.hero-bg-container {
  position: absolute;
  width: 100%;
  height: auto;
}
picture.hero-bg-container.gradient-fade:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  background: linear-gradient(to top, #d03628, 80%, transparent);
  z-index: 1;
}
picture.hero-bg-container .hero-bg-image {
  opacity: 0;
  position: absolute;
  width: 100%;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  -ms-transform: translate3d(-50%, 0, 0);
  -o-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

/* CONTENT & SITE
-------------------------------------- */
#Content {
  max-width: 100%;
  margin: 0 auto;
}

#Content-mask {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: -1;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
#Content-mask.side-nav-active, #Content-mask.side-mini-cart-active, #Content-mask.mini-cart-active, #Content-mask.search-active {
  background-color: rgba(0, 0, 0, 0);
  z-index: 9999 !important;
}

#Side-stripe {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: #d03628;
  z-index: 999;
}
@media only screen and (max-width: 767px) {
  #Side-stripe {
    display: none;
  }
}

#Site {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  -webkit-transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-overflow-scrolling: touch;
  -webkit-transform-style: preserve-3d;
  overflow: visible;
  z-index: 10;
}
#Site.single-ctp, #Site.template-simple {
  margin-top: 100px;
}
#Site.side-nav-active {
  -webkit-transform: translate3d(-410px, 0, 0);
  -moz-transform: translate3d(-410px, 0, 0);
  -ms-transform: translate3d(-410px, 0, 0);
  -o-transform: translate3d(-410px, 0, 0);
  transform: translate3d(-410px, 0, 0);
}

/* -------------------------------------------------------
   TEMPLATES
------------------------------------------------------- */
body.page-template-template-simple h1 {
  margin-bottom: 56px;
}

/* -------------------------------------------------------
   SINGLE CPT
------------------------------------------------------- */
.flexer-section-wrapper .flexer-content-wrapper.autot-cpt {
  padding-top: 150px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1239px) {
  .flexer-section-wrapper .flexer-content-wrapper.autot-cpt {
    padding-top: 100px;
  }
}
.flexer-section-wrapper .flexer-content-wrapper.autot-cpt .header {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 40px;
}
.flexer-section-wrapper .flexer-content-wrapper.autot-cpt .header .headings .heading {
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  margin-bottom: 8px;
}
.flexer-section-wrapper .flexer-content-wrapper.autot-cpt .header .headings .subheading {
  font-size: 15.6px;
  line-height: 22px;
  font-weight: 400;
}
.flexer-section-wrapper .flexer-content-wrapper.autot-cpt .header .headings .subheading span.cap {
  padding: 0 6px;
  color: #d03628;
}
.flexer-section-wrapper .flexer-content-wrapper.autot-cpt .car-content {
  display: flex;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 959px) {
  .flexer-section-wrapper .flexer-content-wrapper.autot-cpt .car-content {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 960px) {
  .flexer-section-wrapper .flexer-content-wrapper.autot-cpt .car-content > .details {
    width: -moz-calc(100% - 400px);
    width: -webkit-calc(100% - 400px);
    width: calc(100% - 400px);
    margin-right: 30px;
  }
}
@media only screen and (max-width: 959px) {
  .flexer-section-wrapper .flexer-content-wrapper.autot-cpt .car-content > .details {
    width: 100%;
  }
}
.flexer-section-wrapper .flexer-content-wrapper.autot-cpt .car-content > .details .gallery {
  position: relative;
  /* Select only direct children */
  margin-bottom: 100px;
}
.flexer-section-wrapper .flexer-content-wrapper.autot-cpt .car-content > .details .gallery:after {
  display: block;
  content: "";
  width: 100%;
  padding-top: 75%;
}
.flexer-section-wrapper .flexer-content-wrapper.autot-cpt .car-content > .details .gallery > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.flexer-section-wrapper .flexer-content-wrapper.autot-cpt .car-content > .details .gallery .slide {
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
  border-radius: 8px;
}
.flexer-section-wrapper .flexer-content-wrapper.autot-cpt .car-content > .details .gallery .slide img {
  height: 100%;
  width: auto;
}
.flexer-section-wrapper .flexer-content-wrapper.autot-cpt .car-content > .details .flexer-accordion-menu {
  margin-top: 56px;
}
.flexer-section-wrapper .flexer-content-wrapper.autot-cpt .car-content .sidebar {
  height: 400px;
  background: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
}
@media only screen and (min-width: 960px) {
  .flexer-section-wrapper .flexer-content-wrapper.autot-cpt .car-content .sidebar {
    width: 370px;
  }
}
@media only screen and (max-width: 959px) {
  .flexer-section-wrapper .flexer-content-wrapper.autot-cpt .car-content .sidebar {
    width: 100%;
    margin-top: 60px;
  }
}

/*ul.select2-results__options { border-radius: 12px !important; margin-top: 10px !important; border: 0.5px solid #D6D6D6; }

.select2-dropdown  { background: transparent !important; }
li.select2-results__option { 
	background: #f7f7f7 !important; border-bottom: 0.5px solid #D6D6D6 !important; 
	&:last-of-type { border-bottom: unset !important; } 
	&:after { content: ""; display: inline-block; width: 18px; height: 18px; position: absolute; border: 1px solid #6DAC3B; border-radius: 100%; right: 15px; margin-top: 3px; }
}
li.select2-results__option--selected { 
	background: #f7f7f7 !important; color: #6DAC3B !important;
	&:after { content: ""; display: inline-block; width: 10px; height: 10px; position: absolute; border: 6.5px solid #6DAC3B; border-radius: 100%; right: 14px; margin-top: 3px; box-shadow: 0px 0px 6px #6CAC3B66; }
}

li.select2-results__option--highlighted:not(.select2-results__option--selected)  {  
	background: #f7f7f7 !important; color: #6DAC3B !important;
	&:after { content: ""; display: inline-block; width: 18px; height: 18px; position: absolute; border: 1px solid #6DAC3B; border-radius: 100%; right: 15px; margin-top: 3px; }
	&:before { content: ""; display: inline-block; width: 6px; height: 6px; position: absolute; background: #6DAC3B; border-radius: 100%; right: 22px; margin-top: 10px; }
}

span.select2-container--open { 
	.select2-selection { box-shadow: 0px 0px 20px #24332D33; }
}

@media only screen and (max-width: 479px) { 
	.select2-results__option { font-size: 12px !important; }  
} */
div.successful-email-notification {
  display: block;
  position: fixed;
  bottom: 26px;
  right: -3000px;
  z-index: 9999;
  background: #fff;
  color: black;
  padding: 20px 30px 22px 30px;
  border-radius: 6px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  border-left: 12px solid #ffffff;
  font-size: 15px;
}
div.successful-email-notification.success {
  right: 26px;
  border-left: 12px solid #d03628;
}
div.successful-email-notification.error {
  right: 26px;
  border-left: 12px solid #D63D0F;
}

/* ------------------------------------
   PRELOADERS
------------------------------------- */
#Flexer-preloader div.spinner-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  margin-top: -32px;
  margin-left: -32px;
}
#Flexer-preloader div.spinner-wrapper .spinner {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 64px;
}
#Flexer-preloader div.spinner-wrapper .spinner div {
  position: absolute;
  display: block;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid #d03628;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  border-radius: 999px;
  -webkit-animation: spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  animation: spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #d03628 transparent transparent transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#Flexer-preloader div.spinner-wrapper .spinner div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
  animation-delay: -0.45s;
}
#Flexer-preloader div.spinner-wrapper .spinner div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
#Flexer-preloader div.spinner-wrapper .spinner div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
  animation-delay: -0.15s;
}

/* ------------------------------------
   HEADER
------------------------------------- */
body.single-autot-cpt #Header:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-bottom: 0.5px solid #D9D9D9;
  opacity: 1;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

#Header {
  position: fixed;
  display: flex;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 0;
  overflow: visible !important;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 500;
  -webkit-transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform-style: preserve-3d;
}
#Header:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-bottom: 0.5px solid #D9D9D9;
  opacity: 0;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
#Header.not-top:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-bottom: 0.5px solid #D9D9D9;
  opacity: 1;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
#Header.side-nav-active {
  -webkit-transform: translate3d(-410px, 0, 0);
  -moz-transform: translate3d(-410px, 0, 0);
  -ms-transform: translate3d(-410px, 0, 0);
  -o-transform: translate3d(-410px, 0, 0);
  transform: translate3d(-410px, 0, 0);
  left: 0;
}
#Header.side-nav-active.not-top {
  background-color: rgba(255, 255, 255, 0);
}
#Header #Header-shadow {
  position: absolute;
  top: 100px;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  -ms-transform: translate3d(-50%, 0, 0);
  -o-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  opacity: 1;
  height: auto;
  margin: 0 auto;
  -webkit-transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform-style: preserve-3d;
  z-index: 100;
}
#Header .flexer-content-wrapper {
  display: flex;
  align-items: center;
  width: 1240px;
  padding: 0 20px;
  z-index: 10;
  margin: 0 auto;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  #Header .flexer-content-wrapper {
    padding: 0 26px;
  }
}
@media only screen and (min-width: 1240px) {
  #Header a.image-wrapper {
    display: inline-block;
    position: relative;
    width: auto;
    height: 66px;
  }
  #Header a.image-wrapper img.header-logo {
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    width: auto;
    height: 66px;
    -webkit-transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}
@media only screen and (max-width: 1239px) {
  #Header a.image-wrapper {
    display: inline-block;
    position: relative;
    width: auto;
    height: 46px;
  }
  #Header a.image-wrapper img.header-logo {
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    width: auto;
    height: 46px;
    -webkit-transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}
#Header a.cpt-closer {
  display: block;
  position: absolute;
  right: 18px;
  top: 22px;
  width: 56px;
  height: 56px;
  background: #d03628;
  border-radius: 2px;
}
@media only screen and (max-width: 1365px) {
  #Header a.cpt-closer {
    top: 12px;
  }
}
#Header a.cpt-closer:before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-close.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-close.svg) no-repeat 50% 50%;
  background-color: #ffffff;
  width: 38px;
  height: 38px;
}
#Header a.cpt-closer:hover {
  -webkit-box-shadow: 0 0 20px 0 rgba(208, 54, 40, 0.6);
  -moz-box-shadow: 0 0 20px 0 rgba(208, 54, 40, 0.6);
  box-shadow: 0 0 20px 0 rgba(208, 54, 40, 0.6);
}
#Header #Header-tools {
  position: absolute;
  display: none;
  top: 0;
  right: 0;
  height: 80px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -webkit-transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#Header #Header-tools #Nav-toggle,
#Header #Header-tools #Nav-closer {
  position: relative;
  width: 80px;
  height: 80px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#Header #Header-tools #Nav-toggle i.theme-icon,
#Header #Header-tools #Nav-closer i.theme-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  width: 34px;
  height: 34px;
}
#Header #Header-tools #Nav-toggle i.theme-icon:before,
#Header #Header-tools #Nav-closer i.theme-icon:before {
  background: #000000;
  width: 42px;
  height: 42px;
}
#Header #Header-tools #Nav-toggle span.icon:before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-hamburger.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-hamburger.svg) no-repeat 50% 50%;
  background-color: #000000;
  width: 56px;
  height: 56px;
}
#Header #Header-tools #Nav-closer span.icon:before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-close.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-close.svg) no-repeat 50% 50%;
  background-color: #ffffff;
  width: 56px;
  height: 56px;
}
#Header #Header-tools #Nav-toggle {
  display: inline-block;
  right: 18px;
}
@media only screen and (max-width: 767px) {
  #Header #Header-tools #Nav-toggle {
    right: 0;
  }
}
#Header #Header-tools #Nav-closer {
  display: none;
}
@media only screen and (min-width: 1240px) {
  #Header #Header-tools { /* Show :hover state only on desktop devices */ }
  #Header #Header-tools #Nav-toggle:hover,
  #Header #Header-tools #Search-toggle:hover {
    color: #d03628;
  }
}
#Header #Header-nav {
  position: relative;
  top: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#Header.side-nav-active #Nav-toggle {
  display: none !important;
}
@media only screen and (min-width: 480px) {
  #Header.side-nav-active #Nav-closer {
    display: inline-block !important;
  }
}
#Header #Header-mask {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 100px;
  background-color: rgba(0, 0, 0, 0);
  z-index: -1;
}
@media only screen and (min-width: 1240px) {
  #Header #Header-mask {
    height: 100px;
  }
}
#Header #Header-mask.side-nav-active {
  width: -moz-calc(100% - 0px);
  width: -webkit-calc(100% - 0px);
  width: calc(100% - 0px);
  background-color: rgba(0, 0, 0, 0);
  z-index: 9999;
}

/* ------------------------------------
   HEROS
------------------------------------- */
.hero-bg-video-wrapper {
  position: absolute;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.hero-bg-video-wrapper .video-mask {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 102%;
  height: 102%;
  background: rgba(255, 255, 255, 0.75);
  z-index: 8;
}
.hero-bg-video-wrapper #Hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

.hero-bg-image-wrapper {
  position: absolute;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.hero-bg-image-wrapper img {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

#Hero {
  position: relative;
  display: flex;
  align-content: center;
  justify-content: center;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform-style: preserve-3d;
  background-color: transparent !important;
  z-index: 9;
  color: #000000;
}
#Hero.padding-frontpage {
  height: 100vh;
}
#Hero.padding-huoneistot-cpt {
  padding-top: 140px;
  padding-bottom: 140px;
}
#Hero.side-nav-active {
  -webkit-transform: translate3d(-410px, 0, 0);
  -moz-transform: translate3d(-410px, 0, 0);
  -ms-transform: translate3d(-410px, 0, 0);
  -o-transform: translate3d(-410px, 0, 0);
  transform: translate3d(-410px, 0, 0);
}
#Hero #Hero-mask {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #ffffff;
  z-index: -1; /* height - #Site's negative top margin */
}
#Hero #Hero-mask.side-nav-active {
  width: -moz-calc(100% - 0px);
  width: -webkit-calc(100% - 0px);
  width: calc(100% - 0px);
  background-color: rgba(255, 255, 255, 0);
  z-index: 9999;
}
#Hero a.hero-scroll-down-btn {
  position: absolute;
  bottom: 60px;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  -ms-transform: translate3d(-50%, 0, 0);
  -o-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  cursor: pointer;
  z-index: 99;
  animation: hero-arrow-stretch;
  animation-direction: normal;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 3.5s;
  animation-delay: 2s;
}
@media only screen and (max-width: 767px) {
  #Hero a.hero-scroll-down-btn {
    bottom: 120px;
  }
}
#Hero a.hero-scroll-down-btn i.theme-icon:before {
  width: 42px;
  height: 42px;
  background-color: #000000;
}

body.error404 #Hero {
  margin: 0 auto;
}
body.error404 #Hero .flexer-content-wrapper {
  padding: 0 20px;
  text-align: center;
}

/* ------------------------------------
   NAVIGATIONS
------------------------------------- */
/* Desktop navigation
-------------------------------------------- */
#Header-nav {
  float: right;
  min-width: 100px;
  margin-left: auto;
  background-color: transparent;
  -webkit-transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#Header-nav:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
#Header-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  /* Open next level on hover, for level 2 & 3 li elements. */
}
#Header-nav ul > li {
  position: relative;
  display: block;
  float: left;
  list-style: none;
  padding-bottom: 40px;
  top: 20px;
}
#Header-nav ul > li > a {
  display: block;
  float: left;
  padding: 0 30px;
  color: #000000;
  font-family: "filson-pro", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
#Header-nav ul > li.cta-item {
  margin-left: 38px;
  -webkit-transition: margin-left 0.2s ease-in-out;
  -moz-transition: margin-left 0.2s ease-in-out;
  -ms-transition: margin-left 0.2s ease-in-out;
  -o-transition: margin-left 0.2s ease-in-out;
  transition: margin-left 0.2s ease-in-out;
}
#Header-nav ul > li.cta-item a {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0px 48px;
  color: #ffffff;
  font-weight: 700 !important;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  background-color: #d03628;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#Header-nav ul > li.cta-item a i.theme-icon {
  top: 1px;
  margin-left: 7px;
}
#Header-nav ul > li.cta-item a:hover {
  color: #ffffff;
  background-color: #d03628;
  -webkit-box-shadow: 0 0 30px 0 rgba(208, 54, 40, 0.5);
  -moz-box-shadow: 0 0 30px 0 rgba(208, 54, 40, 0.5);
  box-shadow: 0 0 30px 0 rgba(208, 54, 40, 0.5);
  opacity: 1 !important;
}
#Header-nav ul > li.cta-item.current-menu-item > a {
  position: relative;
  color: #ffffff;
  background-color: #d03628;
  opacity: 1 !important;
}
#Header-nav ul > li > a:hover,
#Header-nav ul > li > a.active,
#Header-nav ul > li.current-menu-item > a,
#Header-nav ul > li.activeSection > a,
#Header-nav ul > li.current-menu-parent > a {
  color: #d03628;
}
#Header-nav ul > li:last-child > ul {
  left: auto;
  right: 0;
}
#Header-nav ul > li:last-child > ul > li > ul {
  left: auto;
  right: 100%;
}
#Header-nav ul li:hover > ul {
  display: block;
  z-index: -1;
}
#Header-nav ul ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  padding: 0;
  border-bottom: 0.5px solid #EAEAEA;
  overflow: hidden;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
}
#Header-nav ul ul li {
  position: relative;
  border-bottom: 0.5px solid #EAEAEA;
  top: 0;
  padding-bottom: 0;
}
#Header-nav ul ul li:last-child {
  border-bottom: none;
}
#Header-nav ul ul li a {
  display: block;
  padding: 16px 20px;
  width: 260px;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#Header-nav ul ul li a:hover {
  background-color: #EAEAEA;
  color: #d03628;
}
#Header-nav ul ul li.current-menu-item a {
  background-color: #d03628;
  color: #ffffff;
}
#Header-nav ul ul li.current-menu-item a:hover {
  background-color: #7a2018 !important;
  color: #ffffff !important;
}
#Header-nav ul ul ul {
  top: 0;
  left: 100%;
  background-color: #d03628;
}
#Header-nav ul ul ul li a:hover,
#Header-nav ul ul ul li.current-menu-item a {
  background-color: #d03628;
}

/* Side navigation
-------------------------------------------- */
#Side-nav {
  position: fixed;
  display: block;
  width: 410px;
  height: 100%;
  top: 0;
  left: 100%;
  background-color: #ffffff;
  overflow: auto;
  -webkit-transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 499;
  /* WRAPPER for side nav content
  -------------------------------------- */
}
#Side-nav.active {
  -webkit-transform: translate3d(-410px, 0, 0);
  -moz-transform: translate3d(-410px, 0, 0);
  -ms-transform: translate3d(-410px, 0, 0);
  -o-transform: translate3d(-410px, 0, 0);
  transform: translate3d(-410px, 0, 0);
  -webkit-box-shadow: 0 0 80px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 80px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 80px 0 rgba(0, 0, 0, 0.5);
  -webkit-transform-style: preserve-3d;
}
#Side-nav div.inner-wrap {
  position: relative;
  top: 0;
  left: 0;
  padding: 34px 40px;
  /* TOP AREA
  ---------------------- */
  /* MOBILE MAIN NAVIGATION
  --------------------------------- */
  /* MOBILE SUB NAVIGATION
  -------------------------- */
  /* SIDE BOTTOM 
  --------------------- */
}
#Side-nav div.inner-wrap div.side-top {
  position: static;
  display: block;
  height: 82px;
}
#Side-nav div.inner-wrap div.side-top div.side-logo {
  display: block;
  height: 56px;
  line-height: 82px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#Side-nav div.inner-wrap div.side-top div.side-logo img {
  display: block;
  height: 56px;
  width: auto;
}
#Side-nav div.inner-wrap div.side-top .nav-closer-mobile {
  position: absolute;
  display: none;
  justify-content: center;
  align-items: center;
  top: 20px;
  right: 14px;
  width: 80px;
  height: 80px;
}
#Side-nav div.inner-wrap div.side-top .nav-closer-mobile i {
  width: 36px;
  height: 36px;
}
#Side-nav div.inner-wrap div.side-top .nav-closer-mobile i:before {
  background: #d03628;
}
@media only screen and (max-width: 479px) {
  #Side-nav div.inner-wrap div.side-top .nav-closer-mobile {
    display: flex;
  }
}
#Side-nav div.inner-wrap #Mobile-main-nav {
  position: static;
  overflow: hidden;
  margin-top: 18px;
}
#Side-nav div.inner-wrap #Mobile-main-nav:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu {
  /* For all levels */
  list-style: none;
  width: -moz-calc(100% - 0px);
  width: -webkit-calc(100% - 0px);
  width: calc(100% - 0px);
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  /* 1. level */
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li {
  position: relative;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li a {
  position: relative;
  display: block;
  padding: 14px 0;
  font: 700 18px/1.2 "filson-pro", sans-serif;
  color: #000000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li:first-child a {
  border-top: none;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li:last-child a {
  border-bottom: none;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li span.count {
  display: none;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li.cta-item {
  margin-top: 60px;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li.cta-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  padding: 0px 48px;
  color: #ffffff;
  font-weight: 700 !important;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  background-color: #d03628;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li.cta-item a i.theme-icon {
  top: 1px;
  margin-left: 7px;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li > span.trigger {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  background: #EDEDED;
  border-radius: 12px;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li > span.trigger i.theme-icon {
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li > span.trigger i:before {
  background: #000000;
  width: 20px;
  height: 20px;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li > span.trigger span.line-x,
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li > span.trigger span.line-y {
  position: absolute;
  display: block;
  top: 50%;
  right: 50%;
  background: #292929;
  border-radius: 10px;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li > span.trigger span.line-x {
  margin: -1px -7px auto auto;
  width: 14px;
  height: 2px;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li > span.trigger span.line-y {
  margin: -7px -1px auto auto;
  width: 2px;
  height: 14px;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li > span.trigger:hover span.line-x,
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li > span.trigger:hover span.line-y {
  background: #292929;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li > span.trigger.active span.line-x {
  display: none;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li.active > span.trigger {
  background: #D6D6D6;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li.active > span.trigger span.line-x,
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li.active > span.trigger span.line-y {
  background: #292929;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li.active > span.trigger:hover span.line-x,
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li.active > span.trigger:hover span.line-y {
  background: #292929;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu li.active > span.trigger span.line-y {
  display: none;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li {
  display: block;
  list-style: none;
  background-color: #ffffff;
  /* 2. level */
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > a {
  position: relative;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > a span.main {
  padding-left: 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > a span.sub {
  padding-left: 0;
  margin-top: -4px;
  font-size: 14px;
  opacity: 0.7;
  font-weight: 400;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li a.active, #Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li.current-menu-item > a, #Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li.current-page-parent > a, #Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li.current-menu-ancestor > a {
  color: #d03628;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li.cta-item.current-menu-item > a {
  color: #ffffff;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > ul {
  position: absolute;
  top: 100%;
  right: -2000px; /* We need height value for jQuery. So we can't use "display:none" with 2 level items. */
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > ul.active {
  position: relative;
  right: 0;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > ul li a {
  padding-left: 26px;
  padding-right: 74px;
  font-family: "filson-pro", sans-serif;
  font-size: 18px;
  line-height: 1.46;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > ul li a:before {
  content: "-  ";
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > ul > li {
  background-color: #ffffff;
  /* 3. level */
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > ul > li:first-child a {
  border-top: none;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > ul > li a {
  font-weight: 400;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > ul > li.current-menu-item > a, #Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > ul > li.current-page-parent > a, #Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > ul > li.current-cat > a, #Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > ul > li.current-cat-parent > a {
  color: #d03628;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > ul > li > ul {
  display: none;
  position: relative;
  top: 100%;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > ul > li > ul.active {
  display: block;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > ul > li > ul > li:first-child a {
  border-top: none;
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > ul > li > ul > li a {
  padding-left: 26px;
  padding-right: 18px;
  background: rgba(0, 0, 0, 0.06);
}
#Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > ul > li > ul > li.current-menu-item > a, #Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > ul > li > ul > li.current-page-parent > a, #Side-nav div.inner-wrap #Mobile-main-nav ul.menu > li > ul > li > ul > li.current-cat > a {
  color: #d03628;
}
@media only screen and (max-width: 1365px) {
  #Side-nav div.inner-wrap #Mobile-main-nav #Side-nav {
    display: block;
  }
}
#Side-nav div.inner-wrap #Mobile-sub-nav {
  display: none;
  position: static;
  margin-top: 50px;
  margin-bottom: 60px;
  padding: 0 30px;
  text-align: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  /* WPML */
}
#Side-nav div.inner-wrap #Mobile-sub-nav .cap {
  padding: 0 11px;
  font: 400 18px/40px "filson-pro", sans-serif;
  opacity: 0.3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
}
#Side-nav div.inner-wrap #Mobile-sub-nav .cap:first-child, #Side-nav div.inner-wrap #Mobile-sub-nav .cap:last-child {
  display: none;
}
#Side-nav div.inner-wrap #Mobile-sub-nav a.languages {
  color: #d03628;
  padding-right: 0;
  font: 400 18px/40px "filson-pro", sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#Side-nav div.inner-wrap #Mobile-sub-nav a.languages:last-child {
  padding-right: 0;
}
#Side-nav div.inner-wrap #Mobile-sub-nav a.languages.active,
#Side-nav div.inner-wrap #Mobile-sub-nav a.languages:hover {
  color: #000000;
  font-weight: 400;
}
#Side-nav div.inner-wrap #Mobile-sub-nav ul.menu {
  display: inline-block;
  list-style: none;
}
#Side-nav div.inner-wrap #Mobile-sub-nav ul.menu li {
  position: relative;
  display: inline-block;
  list-style: none;
}
#Side-nav div.inner-wrap #Mobile-sub-nav ul.menu li.current-menu-item a {
  color: #d03628;
}
#Side-nav div.inner-wrap #Mobile-sub-nav ul.menu li:after {
  content: "/";
  display: inline;
  padding: 0 14px;
  font: 400 18px/40px "filson-pro", sans-serif;
  color: #0d0d0d;
  opacity: 0.3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
}
#Side-nav div.inner-wrap #Mobile-sub-nav ul.menu li:last-child:after {
  display: none;
}
#Side-nav div.inner-wrap #Mobile-sub-nav ul.menu li a {
  display: inline-block;
  font: 400 18px/40px "filson-pro", sans-serif;
  color: #0d0d0d;
  background-color: transparent;
}
#Side-nav div.inner-wrap #Mobile-sub-nav ul.menu li a:first-child {
  padding-left: 0;
}
#Side-nav div.inner-wrap #Side-bottom {
  display: block;
  position: static;
  margin-top: 64px;
  margin-bottom: 100px;
  text-align: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  /* SIDE CONTACTS
  ----------------------- */
  /* SOME icons
  ---------------------- */
  /* BANNERS 
  -------------------------- */
}
#Side-nav div.inner-wrap #Side-bottom:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
#Side-nav div.inner-wrap #Side-bottom #Side-contacts span.cta-text {
  display: none;
  font-size: 14.6px;
  font-family: "filson-pro", sans-serif;
  font-weight: 300;
  line-height: 20px !important;
  line-height: 1;
  margin-bottom: 60px;
}
#Side-nav div.inner-wrap #Side-bottom #Side-contacts a.phone {
  display: block;
  font-size: 21px;
  line-height: 25px;
  font-family: "filson-pro", sans-serif;
  font-weight: 700;
  color: #d03628;
  text-indent: 10px;
  margin-bottom: 26px;
}
#Side-nav div.inner-wrap #Side-bottom #Side-contacts a.phone i.theme-icon:before {
  background: #d03628;
  width: 38px;
  height: 38px;
  left: 0px;
  top: 18px;
}
#Side-nav div.inner-wrap #Side-bottom #Side-contacts span.email {
  display: block;
  margin-top: 8px;
  font-size: 13.6px;
  line-height: 1;
  font-family: "filson-pro", sans-serif;
  font-weight: 300;
  color: #000000;
}
#Side-nav div.inner-wrap #Side-bottom #Side-some-icons {
  display: block;
  position: static;
  margin-top: 50px;
  margin-bottom: 100px;
  margin-left: -4px;
  text-align: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#Side-nav div.inner-wrap #Side-bottom #Side-some-icons:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
#Side-nav div.inner-wrap #Side-bottom #Side-some-icons li {
  display: inline-block;
  list-style: none;
  margin-right: 14px;
  margin-top: 12px;
}
#Side-nav div.inner-wrap #Side-bottom #Side-some-icons li a {
  display: block;
  color: #d03628;
  font-size: 32px;
  line-height: 32px;
}
#Side-nav div.inner-wrap #Side-bottom #Side-banners {
  position: static;
  width: -moz-calc(100% - 44px);
  width: -webkit-calc(100% - 44px);
  width: calc(100% - 44px);
  margin: 30px auto 78px auto;
}
#Side-nav div.inner-wrap #Side-bottom #Side-banners img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 0 auto;
}
#Side-nav div.inner-wrap #Side-bottom #Side-banners img {
  display: block;
  width: 110px;
  height: auto;
  margin: 36px auto 0 auto;
}

/* ------------------------------------
   FOOTER
------------------------------------- */
#Footer {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: unset;
  padding-top: 100px;
  padding-bottom: 110px;
  background: #d03628;
  z-index: 10;
  overflow: hidden;
}
#Footer a {
  color: #ffffff;
}
#Footer a:hover {
  color: #ffffff;
}
#Footer a.flexer-btn {
  color: #d03628;
  background-color: #ffffff;
  border-color: #ffffff;
}
#Footer a.flexer-btn.icon-right i.icon:before {
  background-color: #d03628;
}
#Footer a.flexer-btn:hover {
  -webkit-box-shadow: 0 0 30px 0 rgba(255, 255, 255, 0.3);
  -moz-box-shadow: 0 0 30px 0 rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 30px 0 rgba(255, 255, 255, 0.3);
}
#Footer .image-wrapper {
  position: relative;
  display: inline-block;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  -ms-transform: translate3d(-50%, 0, 0);
  -o-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  margin-bottom: 66px;
}
#Footer .image-wrapper .footer-logo {
  width: 240px;
  height: auto;
}
#Footer .btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
#Footer .rg-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#Footer .rg-section .rg-col.rg-span_12_of_12 {
  width: 100%;
}
@media only screen and (min-width: 960px) {
  #Footer .rg-section .rg-col.rg-span_3_of_12 {
    width: -moz-calc(( 100% - 150px ) / 4);
    width: -webkit-calc(( 100% - 150px ) / 4);
    width: calc(( 100% - 150px ) / 4);
  }
  #Footer .rg-section .rg-col.rg-span_3_of_12:nth-child(4n) {
    margin-right: 0;
  }
  #Footer .rg-section .rg-col.rg-span_4_of_12 {
    width: -moz-calc(( 100% - 100px ) / 3);
    width: -webkit-calc(( 100% - 100px ) / 3);
    width: calc(( 100% - 100px ) / 3);
  }
  #Footer .rg-section .rg-col.rg-span_4_of_12:nth-child(3n) {
    margin-right: 0;
  }
  #Footer .rg-section .rg-col.rg-span_2_of_12 {
    width: -moz-calc(( 100% - 50px ) / 2);
    width: -webkit-calc(( 100% - 50px ) / 2);
    width: calc(( 100% - 50px ) / 2);
  }
  #Footer .rg-section .rg-col.rg-span_2_of_12:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 959px) {
  #Footer .rg-section .rg-col.mobile-hide {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  #Footer .rg-section .rg-col {
    margin-right: 30px;
  }
  #Footer .rg-section .rg-col.rg-span_3_of_12 {
    width: -moz-calc(( 100% - 60px ) / 3);
    width: -webkit-calc(( 100% - 60px ) / 3);
    width: calc(( 100% - 60px ) / 3);
  }
  #Footer .rg-section .rg-col.rg-span_3_of_12:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  #Footer .rg-section .rg-col.rg-span_12_of_12, #Footer .rg-section .rg-col.rg-span_3_of_12, #Footer .rg-section .rg-col.rg-span_4_of_12, #Footer .rg-section .rg-col.rg-span_2_of_12 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }
  #Footer .rg-section .rg-col.rg-span_12_of_12:last-child, #Footer .rg-section .rg-col.rg-span_3_of_12:last-child, #Footer .rg-section .rg-col.rg-span_4_of_12:last-child, #Footer .rg-section .rg-col.rg-span_2_of_12:last-child {
    margin-top: 0;
  }
}
#Footer .flexer-bottom-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 80px;
  justify-content: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#Footer .flexer-bottom-bar span.cap {
  padding: 0 8px;
  opacity: 0.6;
}
@media only screen and (max-width: 1239px) {
  #Footer .flexer-bottom-bar {
    padding: 0 16px;
  }
}
#Footer .flexer-bottom-bar .copyright {
  width: 100%;
  margin-bottom: 22px;
}
#Footer .flexer-bottom-bar .copyright,
#Footer .flexer-bottom-bar .social {
  display: flex;
  justify-content: center;
  height: 58px;
  line-height: 26px;
  font-weight: 300;
  font-size: 13.6px;
  color: #ffffff;
}
#Footer .flexer-bottom-bar .copyright a {
  cursor: pointer;
  margin-left: 0;
  color: #ffffff;
}
#Footer .flexer-bottom-bar .copyright a:hover {
  color: #ffffff;
}
#Footer .flexer-bottom-bar .social a {
  content: "";
  position: relative;
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-top: 16px;
  margin-left: 32px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#Footer .flexer-bottom-bar .social a:before {
  width: 26px;
  height: 26px;
  background-color: #000000;
}
#Footer .flexer-bottom-bar .social a.facebook:before {
  -webkit-mask: url(../Flexer/images/social/social-facebook.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/social/social-facebook.svg) no-repeat 50% 50%;
}
#Footer .flexer-bottom-bar .social a.instagram:before {
  -webkit-mask: url(../Flexer/images/social/social-instagram.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/social/social-instagram.svg) no-repeat 50% 50%;
}
#Footer .flexer-bottom-bar .social a.linkedin:before {
  -webkit-mask: url(../Flexer/images/social/social-linkedin.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/social/social-linkedin.svg) no-repeat 50% 50%;
}
#Footer .flexer-bottom-bar .social a.pinterest:before {
  -webkit-mask: url(../Flexer/images/social/social-pinterest.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/social/social-pinterest.svg) no-repeat 50% 50%;
}
#Footer .flexer-bottom-bar .social a.twitter:before {
  -webkit-mask: url(../Flexer/images/social/social-twitter.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/social/social-twitter.svg) no-repeat 50% 50%;
}
#Footer .flexer-bottom-bar .social a.vimeo:before {
  -webkit-mask: url(../Flexer/images/social/social-vimeo.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/social/social-vimeo.svg) no-repeat 50% 50%;
}
#Footer .flexer-bottom-bar .social a.youtube:before {
  -webkit-mask: url(../Flexer/images/social/social-youtube.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/social/social-youtube.svg) no-repeat 50% 50%;
}
#Footer .flexer-bottom-bar .social a:hover:before {
  background-color: #d03628;
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  #Footer .flexer-bottom-bar {
    margin-top: 60px;
  }
  #Footer .flexer-bottom-bar .copyright,
  #Footer .flexer-bottom-bar .social {
    vertical-align: bottom;
    height: 26px;
    line-height: 26px;
    font-size: 14px;
  }
  #Footer .flexer-bottom-bar .copyright a,
  #Footer .flexer-bottom-bar .social a {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  #Footer .flexer-bottom-bar {
    margin-top: 0;
    display: block;
    bottom: 0;
    margin-top: 20px;
    margin-bottom: 16px;
    text-align: center;
  }
  #Footer .flexer-bottom-bar .copyright {
    flex-wrap: wrap;
  }
  #Footer .flexer-bottom-bar .social {
    vertical-align: text-top;
    height: 32px;
    line-height: 32px;
    margin-top: 40px;
  }
  #Footer .flexer-bottom-bar .social a {
    margin-top: 0;
    margin-left: 0;
  }
  #Footer .flexer-bottom-bar .social a:before {
    width: 32px;
    height: 32px;
  }
  #Footer .flexer-bottom-bar .social a {
    margin-left: 20px;
  }
}
#Footer div.footer-heading-content {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0;
  color: #ffffff;
}
#Footer div.footer-heading-content h3 {
  margin-bottom: 34px;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}
#Footer div.footer-heading-content h5 {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.6px;
}
#Footer div.footer-heading-content h5 a {
  position: relative;
  padding-right: 38px;
}
#Footer div.footer-heading-content h5 a:before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-arrow-right.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-arrow-right.svg) no-repeat 50% 50%;
  top: 58%;
  left: unset;
  right: 2px;
  width: 18px;
  height: 18px;
  background-color: #d03628;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#Footer div.footer-heading-content h5 a:hover {
  color: #d03628;
}
#Footer div.footer-heading-content h5 a:hover:before {
  background-color: #d03628;
  right: 0;
}
#Footer div.footer-heading-content p {
  font-weight: 300;
  font-size: 18px;
  line-height: 32px;
  font-style: normal;
  letter-spacing: 0;
  color: #ffffff;
}
#Footer div.footer-heading-content ul:not(.menu):not(.sub-menu) {
  margin-top: 28px;
  margin-bottom: 46px;
}
#Footer div.footer-heading-content ul:not(.menu):not(.sub-menu) li {
  position: relative;
  margin-bottom: 14px;
  padding: 0 0 0 28px;
  line-height: 1.18;
  letter-spacing: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#Footer div.footer-heading-content ul:not(.menu):not(.sub-menu) li:last-of-type {
  margin-bottom: 0;
}
#Footer div.footer-heading-content ul:not(.menu):not(.sub-menu) li:before {
  -webkit-mask: url(../Flexer/images/phosphor/icons-check.svg) no-repeat 50% 50%;
  mask: url(../Flexer/images/phosphor/icons-check.svg) no-repeat 50% 50%;
  top: 54%;
  left: 8px;
  width: 20px;
  height: 20px;
  background-color: #d03628;
}

.single-page-bottom-image {
  position: relative;
  width: 300px;
  left: 50%;
  top: 20px;
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  -ms-transform: translate3d(-50%, 0, 0);
  -o-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}
@media only screen and (max-width: 767px) {
  .single-page-bottom-image {
    width: 214px;
  }
}

/* -------------------------------------------------------
   CUSTOM
------------------------------------------------------- */
.flexer-custom-block .flexer-headings-and-content h2, .flexer-custom-block .flexer-headings-and-content h3 {
  margin-bottom: 0;
}
.flexer-custom-block .flexer-headings-and-content h2 p {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 42px;
}
.flexer-custom-block .flexer-headings-and-content h3.subheading p {
  font-size: 15.6px;
  line-height: 26px;
  font-weight: 300;
  font-style: normal;
  margin-bottom: 30px;
}
.flexer-custom-block .flexer-headings-and-content .content p i.theme-icon:before {
  width: 24px;
  height: 24px;
  top: 20px;
  margin-left: -10px;
}
.flexer-custom-block a.flexer-btn {
  height: 56px;
  font-size: 15.6px;
}
.flexer-custom-block a.flexer-btn i.theme-icon:before {
  width: 30px;
  height: 30px;
  margin-left: 10px;
}

/* -------------------------------------------------------
   SHORTCODES
------------------------------------------------------- */
/* -------------------------------------------------------
   ALL DESKTOPS ... 1240px ->
------------------------------------------------------- */
@media only screen and (min-width: 1240px) {
  /* RESPONSIVE VISIBILITY */
  .rg-section:not(.footer) .rg-col.hide-below-desktop-large {
    display: none;
  }
  .rg-section:not(.footer) .rg-col.hide-on-desktop-large {
    display: block;
  }
  .rg-section:not(.footer) .rg-col.hide-on-desktop {
    display: none;
  }
  .rg-section:not(.footer) .rg-col.hide-on-tablet {
    display: block;
  }
  .rg-section:not(.footer) .rg-col.hide-on-mobile {
    display: block;
  }
  .rg-section:not(.footer) .rg-col.hide-on-desktop-table {
    display: none;
  }
  .rg-section:not(.footer) .rg-col.hide-on-desktop-mobile {
    display: none;
  }
  .rg-section:not(.footer) .rg-col.hide-on-tablet-mobile {
    display: block;
  }
}
/* -------------------------------------------------------
   LARGE DESKTOPS ... 1680px ->
------------------------------------------------------- */
@media only screen and (min-width: 1680px) {
  /* RESPONSIVE VISIBILITY */
  .rg-section:not(.footer) .rg-col.hide-below-desktop-large {
    display: block;
  }
  .rg-section:not(.footer) .rg-col.hide-on-desktop-large {
    display: none;
  }
  .rg-section:not(.footer) .rg-col.hide-on-desktop {
    display: none;
  }
  .rg-section:not(.footer) .rg-col.hide-on-tablet {
    display: block;
  }
  .rg-section:not(.footer) .rg-col.hide-on-mobile {
    display: block;
  }
  .rg-section:not(.footer) .rg-col.hide-on-desktop-table {
    display: none;
  }
  .rg-section:not(.footer) .rg-col.hide-on-desktop-mobile {
    display: none;
  }
  .rg-section:not(.footer) .rg-col.hide-on-tablet-mobile {
    display: block;
  }
}
/* -------------------------------------------------------
   SMALL DESKTOPS ... 1240px <-> 1680px 
------------------------------------------------------- */
/* -------------------------------------------------------
   ALL MOBILE DEVICES ... 0 <-> 1239px
------------------------------------------------------- */
@media only screen and (max-width: 1365px) {
  #Header {
    top: 0;
    height: 80px;
  }
  #Header #Header-shadow {
    top: 80px;
    left: unset;
    right: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  #Header.side-nav-active #Header-shadow {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  #Header.not-top #Header-shadow {
    opacity: 0.3;
  }
  #Header .flexer-content-wrapper {
    width: 100%;
  }
  #Header #Header-nav {
    display: none;
  }
  #Header #Header-tools {
    display: block;
  }
  #Header #Header-mask {
    height: 80px;
  }
  #Header #Header-mask.side-nav-active {
    width: -moz-calc(100% - 20px);
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
  }
}
/* -------------------------------------------------------
   TABLETS PORTRAIT & LANDSCAPE ... 768px <-> 1239px
------------------------------------------------------- */
@media only screen and (min-width: 768px) and (max-width: 1239px) {
  /* RESPONSIVE VISIBILITY */
  .rg-section:not(.footer) .rg-col.hide-below-desktop-large {
    display: none !important;
  }
  .rg-section:not(.footer) .rg-col.hide-on-desktop-large {
    display: block !important;
  }
  .rg-section:not(.footer) .rg-col.hide-on-desktop {
    display: block !important;
  }
  .rg-section:not(.footer) .rg-col.hide-on-tablet {
    display: none !important;
  }
  .rg-section:not(.footer) .rg-col.hide-on-mobile {
    display: block !important;
  }
  .rg-section:not(.footer) .rg-col.hide-on-desktop-table {
    display: none !important;
  }
  .rg-section:not(.footer) .rg-col.hide-on-desktop-mobile {
    display: block !important;
  }
}
/* -------------------------------------------------------
   TABLETS LANDSCAPE ... 960px <-> 1239px
------------------------------------------------------- */
/* -------------------------------------------------------
   TABLETS PORTRAIT ... 768px <-> 959px
------------------------------------------------------- */
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .rg-section:not(.footer) .rg-col.hide-on-tablet-mobile {
    display: none !important;
  }
}
/* -------------------------------------------------------
   TABLETS PORTRAIT & SMARTPHONES ... 0 <-> 959px
------------------------------------------------------- */
/* -------------------------------------------------------
   SMARTPHONES PORTRAIT & LANDSCAPE ... 0 <-> 767px
------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  /* RESPONSIVE VISIBILITY */
  .rg-section:not(.footer) .rg-col.hide-below-desktop-large {
    display: none !important;
  }
  .rg-section:not(.footer) .rg-col.hide-on-desktop-large {
    display: block !important;
  }
  .rg-section:not(.footer) .rg-col.hide-on-desktop {
    display: block !important;
  }
  .rg-section:not(.footer) .rg-col.hide-on-tablet {
    display: block !important;
  }
  .rg-section:not(.footer) .rg-col.hide-on-mobile {
    display: none !important;
  }
  .rg-section:not(.footer) .rg-col.hide-on-desktop-table {
    display: block !important;
  }
  .rg-section:not(.footer) .rg-col.hide-on-desktop-mobile {
    display: none !important;
  }
  .rg-section:not(.footer) .rg-col.hide-on-tablet-mobile {
    display: none !important;
  }
}
/* -------------------------------------------------------
   SMARTPHONES LANDSCAPE ... 480px <-> 767px
------------------------------------------------------- */
/* -------------------------------------------------------
   SMARTPHONES PORTRAIT ... 0px <-> 479px
------------------------------------------------------- */
@media only screen and (max-width: 479px) {
  /* MASTER */
  #Site.side-nav-active {
    -webkit-transform: translate3d(calc((100% - 20px) * -1), 0, 0);
    -moz-transform: translate3d(calc((100% - 20px) * -1), 0, 0);
    -ms-transform: translate3d(calc((100% - 20px) * -1), 0, 0);
    -o-transform: translate3d(calc((100% - 20px) * -1), 0, 0);
    transform: translate3d(calc((100% - 20px) * -1), 0, 0);
  }
  /* HEADER */
  #Header.side-nav-active {
    -webkit-transform: translate3d(calc((100% - 20px) * -1), 0, 0);
    -moz-transform: translate3d(calc((100% - 20px) * -1), 0, 0);
    -ms-transform: translate3d(calc((100% - 20px) * -1), 0, 0);
    -o-transform: translate3d(calc((100% - 20px) * -1), 0, 0);
    transform: translate3d(calc((100% - 20px) * -1), 0, 0);
  }
  /* HERO */
  #Hero.side-nav-active {
    -webkit-transform: translate3d(calc((100% - 20px) * -1), 0, 0);
    -moz-transform: translate3d(calc((100% - 20px) * -1), 0, 0);
    -ms-transform: translate3d(calc((100% - 20px) * -1), 0, 0);
    -o-transform: translate3d(calc((100% - 20px) * -1), 0, 0);
    transform: translate3d(calc((100% - 20px) * -1), 0, 0);
  }
  /* NAVIGATIONS */
  #Nav-closer {
    display: none !important;
  }
  #Side-nav {
    width: -moz-calc(100% - 20px);
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
  }
  #Side-nav.active {
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
/* -------------------------------------------------------
   SMARTPHONES EXTRA SMALL ... 0px <-> 380px
------------------------------------------------------- */
/* -------------------------------------------------------
   COLOR THEMES
------------------------------------------------------- */
.flexer-section-wrapper.color-theme-light {
  background-color: transparent;
  color: #000000;
  /*h1,
  h2 { color: $flexer-light; }

        h3,
        h4,
        h5,
        h6 { color: $flexer-light; } */
}
.flexer-section-wrapper.color-theme-grey {
  background-color: #F4F4F4;
  color: #000000;
}
.flexer-section-wrapper.color-theme-grey h1,
.flexer-section-wrapper.color-theme-grey h2 {
  color: #000000;
}
.flexer-section-wrapper.color-theme-grey h3,
.flexer-section-wrapper.color-theme-grey h4,
.flexer-section-wrapper.color-theme-grey h5,
.flexer-section-wrapper.color-theme-grey h6 {
  color: #000000;
}
.flexer-section-wrapper.color-theme-grey a:hover {
  color: #000000;
}
.flexer-section-wrapper.color-theme-grey .flexer-section-mask {
  background-color: rgb(0, 0, 0);
}
.flexer-section-wrapper.color-theme-dark {
  background-color: #000000;
  color: #ffffff;
  /* Section mask for faking background images's opacity level */
  /* Buttons */
}
.flexer-section-wrapper.color-theme-dark h1, .flexer-section-wrapper.color-theme-dark h2, .flexer-section-wrapper.color-theme-dark h3, .flexer-section-wrapper.color-theme-dark h4, .flexer-section-wrapper.color-theme-dark h5, .flexer-section-wrapper.color-theme-dark h6 {
  color: #ffffff;
}
.flexer-section-wrapper.color-theme-dark a {
  color: #d03628;
}
@media only screen and (min-width: 1240px) {
  .flexer-section-wrapper.color-theme-dark a:hover {
    color: #ffffff;
  }
}
.flexer-section-wrapper.color-theme-dark .flexer-section-mask {
  background-color: rgb(0, 0, 0);
}
.flexer-section-wrapper.color-theme-dark .flexer-btn {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #000000;
}
.flexer-section-wrapper.color-theme-dark .flexer-btn.secondary-btn {
  border-color: #ffffff;
  background-color: transparent;
  color: #ffffff;
}
@media only screen and (min-width: 1240px) {
  .flexer-section-wrapper.color-theme-dark .flexer-btn:hover {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #d03628;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.4);
  }
  .flexer-section-wrapper.color-theme-dark .flexer-btn:hover.secondary-btn {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #d03628;
  }
}
.flexer-section-wrapper.color-theme-brand {
  background-color: #d03628;
  color: #ffffff;
  /* Sections */
  /* Buttons */
}
.flexer-section-wrapper.color-theme-brand h1, .flexer-section-wrapper.color-theme-brand h2, .flexer-section-wrapper.color-theme-brand h3, .flexer-section-wrapper.color-theme-brand h4, .flexer-section-wrapper.color-theme-brand h5, .flexer-section-wrapper.color-theme-brand h6 {
  color: #ffffff;
}
.flexer-section-wrapper.color-theme-brand a {
  color: #ffffff;
}
@media only screen and (min-width: 1240px) {
  .flexer-section-wrapper.color-theme-brand a:hover {
    color: #ffffff;
  }
}
.flexer-section-wrapper.color-theme-brand .flexer-section-mask {
  background-color: #d03628;
}
.flexer-section-wrapper.color-theme-brand .flexer-btn {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #d03628;
}
.flexer-section-wrapper.color-theme-brand .flexer-btn i.icon:before {
  background-color: #d03628;
}
.flexer-section-wrapper.color-theme-brand .flexer-btn.secondary-btn {
  border-color: #ffffff;
  background-color: transparent;
  color: #ffffff;
}
.flexer-section-wrapper.color-theme-brand .flexer-btn.secondary-btn i.icon:before {
  background-color: #ffffff;
}
@media only screen and (min-width: 1240px) {
  .flexer-section-wrapper.color-theme-brand .flexer-btn:hover {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #d03628;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
  }
  .flexer-section-wrapper.color-theme-brand .flexer-btn:hover i.icon:before {
    background-color: #d03628;
  }
  .flexer-section-wrapper.color-theme-brand .flexer-btn:hover.secondary-btn {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #d03628;
  }
  .flexer-section-wrapper.color-theme-brand .flexer-btn:hover.secondary-btn i.icon:before {
    background-color: #d03628;
  }
}

/* COLUMNS WITH BG COLOR
----------------------------------------- */
.rg-section .rg-col.light {
  background: #ffffff !important;
  color: #000000 !important;
}
.rg-section .rg-col.light h1, .rg-section .rg-col.light h2, .rg-section .rg-col.light h3, .rg-section .rg-col.light h4, .rg-section .rg-col.light h5, .rg-section .rg-col.light h6 {
  color: #000000 !important;
}
.rg-section .rg-col.light a {
  color: #d03628 !important;
}
.rg-section .rg-col.light a:hover {
  color: #000000 !important;
}
.rg-section .rg-col.dark {
  background: rgba(0, 0, 0, 0.96) !important;
  color: #ffffff !important;
}
.rg-section .rg-col.dark h1, .rg-section .rg-col.dark h2, .rg-section .rg-col.dark h3, .rg-section .rg-col.dark h4, .rg-section .rg-col.dark h5, .rg-section .rg-col.dark h6 {
  color: #ffffff !important;
}
.rg-section .rg-col.dark a {
  color: #d03628 !important;
}
.rg-section .rg-col.dark a:hover {
  color: #ffffff !important;
}
.rg-section .rg-col.brand-light {
  background: #d03628 !important;
  color: #ffffff !important;
}
.rg-section .rg-col.brand-light h1, .rg-section .rg-col.brand-light h2, .rg-section .rg-col.brand-light h3, .rg-section .rg-col.brand-light h4, .rg-section .rg-col.brand-light h5, .rg-section .rg-col.brand-light h6 {
  color: #ffffff !important;
}
.rg-section .rg-col.brand-light a {
  color: #000000 !important;
}
.rg-section .rg-col.brand-light a:hover {
  color: #ffffff !important;
}
.rg-section .rg-col.brand-dark {
  background: #d03628 !important;
  color: #000000 !important;
}
.rg-section .rg-col.brand-dark h1, .rg-section .rg-col.brand-dark h2, .rg-section .rg-col.brand-dark h3, .rg-section .rg-col.brand-dark h4, .rg-section .rg-col.brand-dark h5, .rg-section .rg-col.brand-dark h6 {
  color: #000000 !important;
}
.rg-section .rg-col.brand-dark a {
  color: #ffffff !important;
}
.rg-section .rg-col.brand-dark a:hover {
  color: #000000 !important;
}
