/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("../../files/theme/plugins/owl/assets/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
	display:none;
}
.rs-columns {
  clear: both;
  display: inline-block;
  width: 100%;
}

.rs-column {
  float: left;
  width: 100%;
  margin-top: 7.69231%;
  margin-right: 7.69231%;
}
.rs-column.-large-first {
  clear: left;
}
.rs-column.-large-last {
  margin-right: -5px;
}
.rs-column.-large-first-row {
  margin-top: 0;
}
.rs-column.-large-col-1-1 {
  width: 100%;
}
.rs-column.-large-col-2-1 {
  width: 46.15385%;
}
.rs-column.-large-col-2-2 {
  width: 100%;
}
.rs-column.-large-col-3-1 {
  width: 28.20513%;
}
.rs-column.-large-col-3-2 {
  width: 64.10256%;
}
.rs-column.-large-col-3-3 {
  width: 100%;
}
.rs-column.-large-col-4-1 {
  width: 19.23077%;
}
.rs-column.-large-col-4-2 {
  width: 46.15385%;
}
.rs-column.-large-col-4-3 {
  width: 73.07692%;
}
.rs-column.-large-col-4-4 {
  width: 100%;
}
.rs-column.-large-col-5-1 {
  width: 13.84615%;
}
.rs-column.-large-col-5-2 {
  width: 35.38462%;
}
.rs-column.-large-col-5-3 {
  width: 56.92308%;
}
.rs-column.-large-col-5-4 {
  width: 78.46154%;
}
.rs-column.-large-col-5-5 {
  width: 100%;
}
.rs-column.-large-col-6-1 {
  width: 10.25641%;
}
.rs-column.-large-col-6-2 {
  width: 28.20513%;
}
.rs-column.-large-col-6-3 {
  width: 46.15385%;
}
.rs-column.-large-col-6-4 {
  width: 64.10256%;
}
.rs-column.-large-col-6-5 {
  width: 82.05128%;
}
.rs-column.-large-col-6-6 {
  width: 100%;
}
@media screen and (max-width: 900px) {
  .rs-column {
    margin-top: 7.69231%;
    margin-right: 7.69231%;
  }
  .rs-column.-large-first {
    clear: none;
  }
  .rs-column.-large-last {
    margin-right: 7.69231%;
  }
  .rs-column.-large-first-row {
    margin-top: 7.69231%;
  }
  .rs-column.-medium-first {
    clear: left;
  }
  .rs-column.-medium-last {
    margin-right: -5px;
  }
  .rs-column.-medium-first-row {
    margin-top: 0;
  }
  .rs-column.-medium-col-1-1 {
    width: 100%;
  }
  .rs-column.-medium-col-2-1 {
    width: 46.15385%;
  }
  .rs-column.-medium-col-2-2 {
    width: 100%;
  }
  .rs-column.-medium-col-3-1 {
    width: 28.20513%;
  }
  .rs-column.-medium-col-3-2 {
    width: 64.10256%;
  }
  .rs-column.-medium-col-3-3 {
    width: 100%;
  }
  .rs-column.-medium-col-4-1 {
    width: 19.23077%;
  }
  .rs-column.-medium-col-4-2 {
    width: 46.15385%;
  }
  .rs-column.-medium-col-4-3 {
    width: 73.07692%;
  }
  .rs-column.-medium-col-4-4 {
    width: 100%;
  }
  .rs-column.-medium-col-5-1 {
    width: 13.84615%;
  }
  .rs-column.-medium-col-5-2 {
    width: 35.38462%;
  }
  .rs-column.-medium-col-5-3 {
    width: 56.92308%;
  }
  .rs-column.-medium-col-5-4 {
    width: 78.46154%;
  }
  .rs-column.-medium-col-5-5 {
    width: 100%;
  }
  .rs-column.-medium-col-6-1 {
    width: 10.25641%;
  }
  .rs-column.-medium-col-6-2 {
    width: 28.20513%;
  }
  .rs-column.-medium-col-6-3 {
    width: 46.15385%;
  }
  .rs-column.-medium-col-6-4 {
    width: 64.10256%;
  }
  .rs-column.-medium-col-6-5 {
    width: 82.05128%;
  }
  .rs-column.-medium-col-6-6 {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .rs-column {
    margin-top: 7.69231%;
    margin-right: 7.69231%;
  }
  .rs-column.-large-last {
    margin-right: 7.69231%;
  }
  .rs-column.-large-first-row {
    margin-top: 7.69231%;
  }
  .rs-column.-medium-first {
    clear: none;
  }
  .rs-column.-medium-last {
    margin-right: 7.69231%;
  }
  .rs-column.-medium-first-row {
    margin-top: 7.69231%;
  }
  .rs-column.-small-first {
    clear: left;
  }
  .rs-column.-small-last {
    margin-right: -5px;
  }
  .rs-column.-small-first-row {
    margin-top: 0;
  }
  .rs-column.-small-col-1-1 {
    width: 100%;
  }
  .rs-column.-small-col-2-1 {
    width: 46.15385%;
  }
  .rs-column.-small-col-2-2 {
    width: 100%;
  }
  .rs-column.-small-col-3-1 {
    width: 28.20513%;
  }
  .rs-column.-small-col-3-2 {
    width: 64.10256%;
  }
  .rs-column.-small-col-3-3 {
    width: 100%;
  }
  .rs-column.-small-col-4-1 {
    width: 19.23077%;
  }
  .rs-column.-small-col-4-2 {
    width: 46.15385%;
  }
  .rs-column.-small-col-4-3 {
    width: 73.07692%;
  }
  .rs-column.-small-col-4-4 {
    width: 100%;
  }
  .rs-column.-small-col-5-1 {
    width: 13.84615%;
  }
  .rs-column.-small-col-5-2 {
    width: 35.38462%;
  }
  .rs-column.-small-col-5-3 {
    width: 56.92308%;
  }
  .rs-column.-small-col-5-4 {
    width: 78.46154%;
  }
  .rs-column.-small-col-5-5 {
    width: 100%;
  }
  .rs-column.-small-col-6-1 {
    width: 10.25641%;
  }
  .rs-column.-small-col-6-2 {
    width: 28.20513%;
  }
  .rs-column.-small-col-6-3 {
    width: 46.15385%;
  }
  .rs-column.-small-col-6-4 {
    width: 64.10256%;
  }
  .rs-column.-small-col-6-5 {
    width: 82.05128%;
  }
  .rs-column.-small-col-6-6 {
    width: 100%;
  }
}

#colorbox,#cboxOverlay,#cboxWrapper{position:absolute;top:0;left:0;z-index:9999;overflow:hidden;-webkit-transform:translate3d(0,0,0)}#cboxWrapper{max-width:none}#cboxOverlay{position:fixed;width:100%;height:100%}#cboxMiddleLeft,#cboxBottomLeft{clear:left}#cboxContent{position:relative}#cboxLoadedContent{overflow:auto;-webkit-overflow-scrolling:touch}#cboxTitle{margin:0}#cboxLoadingOverlay,#cboxLoadingGraphic{position:absolute;top:0;left:0;width:100%;height:100%}#cboxPrevious,#cboxNext,#cboxClose,#cboxSlideshow{cursor:pointer}.cboxPhoto{float:left;margin:auto;border:0;display:block;max-width:none;-ms-interpolation-mode:bicubic}.cboxIframe{width:100%;height:100%;display:block;border:0;padding:0;margin:0}#colorbox,#cboxContent,#cboxLoadedContent{box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}#cboxOverlay{background:#000;opacity:.9;filter:~'alpha(opacity = 90)'}#colorbox{outline:0}#cboxContent{margin-top:20px;background:#000}.cboxIframe{background:#fff}#cboxError{padding:50px;border:1px solid #ccc}#cboxLoadedContent{border:5px solid #000;background:#fff}#cboxTitle{position:absolute;top:-20px;left:0;color:#ccc}#cboxCurrent{position:absolute;top:-20px;right:0;color:#ccc}#cboxLoadingGraphic{background:url(../../assets/colorbox/images/loading.gif) no-repeat center center}#cboxPrevious,#cboxNext,#cboxSlideshow,#cboxClose{border:0;padding:0;margin:0;overflow:visible;width:auto;background:0 0}#cboxPrevious:active,#cboxNext:active,#cboxSlideshow:active,#cboxClose:active{outline:0}#cboxSlideshow{position:absolute;top:-20px;right:90px;color:#fff}#cboxPrevious{position:absolute;top:50%;left:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top left;width:28px;height:65px;text-indent:-9999px}#cboxPrevious:hover{background-position:bottom left}#cboxNext{position:absolute;top:50%;right:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top right;width:28px;height:65px;text-indent:-9999px}#cboxNext:hover{background-position:bottom right}#cboxClose{position:absolute;top:5px;right:5px;display:block;background:url(../../assets/colorbox/images/controls.png) no-repeat top center;width:38px;height:19px;text-indent:-9999px}#cboxClose:hover{background-position:bottom center}
.content-slider{overflow:hidden;visibility:hidden;position:relative}.slider-wrapper{overflow:hidden;position:relative}.slider-wrapper>*{float:left;width:100%;position:relative}.slider-control{height:30px;position:relative}.slider-control a,.slider-control .slider-menu{position:absolute;top:9px;display:inline-block}.slider-control .slider-prev{left:0}.slider-control .slider-next{right:0}.slider-control .slider-menu{top:0;width:50%;left:50%;margin-left:-25%;font-size:27px;text-align:center}.slider-control .slider-menu b{color:#bbb;cursor:pointer}.slider-control .slider-menu b.active{color:#666}
.gm-style .gm-style-iw-c {
  border-radius: 0;
  padding: 0;
}
.gm-style .gm-style-iw-d {
  overflow-x: hidden !important;
}
.gm-style span.loader {
  display: block;
  width: 16px;
  height: 16px;
  margin: 10px;
  background-image: url("/bundles/estatemanagergooglemaps/loader.gif");
  background-repeat: no-repeat;
}
.gm-style.poi-info-window {
  padding: 10px;
}

.mod_realEstateGoogleMap .google-map, .mod_realEstateExpose .expose_mod_googleMap .google-map {
  min-height: 300px;
}

/*# sourceMappingURL=google-maps-viewer.css.map */

#expose-energiebar{position:relative;margin:65px 0 25px;background:#518c37;background:-moz-linear-gradient(left, #518c37 0%, #feff01 50%, #c52623 99%);background:-webkit-linear-gradient(left, #518c37 0%, #feff01 50%, #c52623 99%);background:linear-gradient(to right, #518c37 0%, #feff01 50%, #c52623 99%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr="#518c37", endColorstr="#c52623",GradientType=1 )}#expose-energiebar .pointer{position:absolute;bottom:100%;margin-bottom:10px;padding:6px;width:30px;border-radius:5px;background:#4f4f4f;color:#fff;text-align:center;transition:margin-left .5s}#expose-energiebar .pointer:after{top:100%;left:50%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-color:rgba(79,79,79,0);border-top-color:#4f4f4f;border-width:5px;margin-left:-5px}#expose-energiebar .bar{position:relative;display:flex;padding:7px 0;box-shadow:0 0 5px 0 rgba(0,0,0,.2)}#expose-energiebar .bar .item{position:relative;text-align:center;flex-grow:1;color:#fff;text-shadow:0 0 3px rgba(0,0,0,.5);font-size:15px;border-right:1px solid #fff}#expose-energiebar .bar .item:after{content:attr(data-value);text-shadow:none;position:absolute;right:0;top:100%;margin-top:13px;font-size:13px;color:#adadad}#expose-energiebar .bar .item:last-child{border-right:0 none}#expose-energiebar .bar .item:first-child:before{content:"0";text-shadow:none;position:absolute;left:0;top:100%;margin-top:13px;font-size:13px;color:#adadad}/*# sourceMappingURL=energiebar.css.map */

/**
 * @license
 *
 * Font Family: General Sans
 * Designed by: Frode Helland
 * URL: https://www.fontshare.com/fonts/general-sans
 * © 2022 Indian Type Foundry
 *
 * Font Styles:
 * General Sans Variable(Variable font)
 * General Sans Variable Italic(Variable font)
 * General Sans Extralight
 * General Sans Extralight Italic
 * General Sans Light
 * General Sans Light Italic
 * General Sans Regular
 * General Sans Italic
 * General Sans Medium
 * General Sans Medium Italic
 * General Sans Semibold
 * General Sans Semibold Italic
 * General Sans Bold
 * General Sans Bold Italic
 *
*/


/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 700.0;
*
* available axes:

* 'wght' (range from 200.0 to 700.0)

*/

@font-face {
  font-family: 'GeneralSans-Variable';
  src: url('/files/theme/fonts/GeneralSans-Variable.woff2') format('woff2'),
       url('/files/theme/fonts/GeneralSans-Variable.woff') format('woff'),
       url('/files/theme/fonts/GeneralSans-Variable.ttf') format('truetype');
       font-weight: 200 700;
       font-display: swap;
       font-style: normal;
}


/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 700.0;
*
* available axes:

* 'wght' (range from 200.0 to 700.0)

*/

@font-face {
  font-family: 'GeneralSans-VariableItalic';
  src: url('/files/theme/fonts/GeneralSans-VariableItalic.woff2') format('woff2'),
       url('/files/theme/fonts/GeneralSans-VariableItalic.woff') format('woff'),
       url('/files/theme/fonts/GeneralSans-VariableItalic.ttf') format('truetype');
       font-weight: 200 700;
       font-display: swap;
       font-style: italic;
}


@font-face {
  font-family: 'GeneralSans-Extralight';
  src: url('/files/theme/fonts/GeneralSans-Extralight.woff2') format('woff2'),
       url('/files/theme/fonts/GeneralSans-Extralight.woff') format('woff'),
       url('/files/theme/fonts/GeneralSans-Extralight.ttf') format('truetype');
       font-weight: 200;
       font-display: swap;
       font-style: normal;
}


@font-face {
  font-family: 'GeneralSans-ExtralightItalic';
  src: url('/files/theme/fonts/GeneralSans-ExtralightItalic.woff2') format('woff2'),
       url('/files/theme/fonts/GeneralSans-ExtralightItalic.woff') format('woff'),
       url('/files/theme/fonts/GeneralSans-ExtralightItalic.ttf') format('truetype');
       font-weight: 200;
       font-display: swap;
       font-style: italic;
}


@font-face {
  font-family: 'GeneralSans-Light';
  src: url('/files/theme/fonts/GeneralSans-Light.woff2') format('woff2'),
       url('/files/theme/fonts/GeneralSans-Light.woff') format('woff'),
       url('/files/theme/fonts/GeneralSans-Light.ttf') format('truetype');
       font-weight: 300;
       font-display: swap;
       font-style: normal;
}


@font-face {
  font-family: 'GeneralSans-LightItalic';
  src: url('/files/theme/fonts/GeneralSans-LightItalic.woff2') format('woff2'),
       url('/files/theme/fonts/GeneralSans-LightItalic.woff') format('woff'),
       url('/files/theme/fonts/GeneralSans-LightItalic.ttf') format('truetype');
       font-weight: 300;
       font-display: swap;
       font-style: italic;
}


@font-face {
  font-family: 'GeneralSans-Regular';
  src: url('/files/theme/fonts/GeneralSans-Regular.woff2') format('woff2'),
       url('/files/theme/fonts/GeneralSans-Regular.woff') format('woff'),
       url('/files/theme/fonts/GeneralSans-Regular.ttf') format('truetype');
       font-weight: 400;
       font-display: swap;
       font-style: normal;
}


@font-face {
  font-family: 'GeneralSans-Italic';
  src: url('/files/theme/fonts/GeneralSans-Italic.woff2') format('woff2'),
       url('/files/theme/fonts/GeneralSans-Italic.woff') format('woff'),
       url('/files/theme/fonts/GeneralSans-Italic.ttf') format('truetype');
       font-weight: 400;
       font-display: swap;
       font-style: italic;
}


@font-face {
  font-family: 'GeneralSans-Medium';
  src: url('/files/theme/fonts/GeneralSans-Medium.woff2') format('woff2'),
       url('/files/theme/fonts/GeneralSans-Medium.woff') format('woff'),
       url('/files/theme/fonts/GeneralSans-Medium.ttf') format('truetype');
       font-weight: 500;
       font-display: swap;
       font-style: normal;
}


@font-face {
  font-family: 'GeneralSans-MediumItalic';
  src: url('/files/theme/fonts/GeneralSans-MediumItalic.woff2') format('woff2'),
       url('/files/theme/fonts/GeneralSans-MediumItalic.woff') format('woff'),
       url('/files/theme/fonts/GeneralSans-MediumItalic.ttf') format('truetype');
       font-weight: 500;
       font-display: swap;
       font-style: italic;
}


@font-face {
  font-family: 'GeneralSans-Semibold';
  src: url('/files/theme/fonts/GeneralSans-Semibold.woff2') format('woff2'),
       url('/files/theme/fonts/GeneralSans-Semibold.woff') format('woff'),
       url('/files/theme/fonts/GeneralSans-Semibold.ttf') format('truetype');
       font-weight: 600;
       font-display: swap;
       font-style: normal;
}


@font-face {
  font-family: 'GeneralSans-SemiboldItalic';
  src: url('/files/theme/fonts/GeneralSans-SemiboldItalic.woff2') format('woff2'),
       url('/files/theme/fonts/GeneralSans-SemiboldItalic.woff') format('woff'),
       url('/files/theme/fonts/GeneralSans-SemiboldItalic.ttf') format('truetype');
       font-weight: 600;
       font-display: swap;
       font-style: italic;
}


@font-face {
  font-family: 'GeneralSans-Bold';
  src: url('/files/theme/fonts/GeneralSans-Bold.woff2') format('woff2'),
       url('/files/theme/fonts/GeneralSans-Bold.woff') format('woff'),
       url('/files/theme/fonts/GeneralSans-Bold.ttf') format('truetype');
       font-weight: 700;
       font-display: swap;
       font-style: normal;
}


@font-face {
  font-family: 'GeneralSans-BoldItalic';
  src: url('/files/theme/fonts/GeneralSans-BoldItalic.woff2') format('woff2'),
       url('/files/theme/fonts/GeneralSans-BoldItalic.woff') format('woff'),
       url('/files/theme/fonts/GeneralSans-BoldItalic.ttf') format('truetype');
       font-weight: 700;
       font-display: swap;
       font-style: italic;
}


/**
 * Copyright by Rittler & Co
 */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

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

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

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

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

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

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/* Clear */
#clear, .clear, .clearer {
	clear:both;
	/*
	height:0;
	overflow:hidden;
	margin:-1px 0 0 0;
	*/
}

/* Display */
.hide,
.invisible {
	display:none;
}
.show {
	display:block;
}

/* Visibility */
.hidden {
	visibility:hidden;
}
.visible {
	visibility:visible;
}

/* We have to reset tabless gallery */
.ce_gallery ul.tabless,
.ce_gallery ul.tabless li {
	margin:0;
	padding:0;
	list-style:none;
	list-style-image:none;
	list-style-type:none;
	list-style-position:inside;
}
/* iCheck plugin Minimal skin, grey
----------------------------------- */
.icheckbox_minimal-grey,
.iradio_minimal-grey {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    width: 18px;
    height: 18px;
    background: url(../../files/theme/plugins/icheck/skins/minimal/grey.png) no-repeat;
    border: none;
    cursor: pointer;
}

.icheckbox_minimal-grey {
    background-position: 0 0;
}
    .icheckbox_minimal-grey.hover {
        background-position: -20px 0;
    }
    .icheckbox_minimal-grey.checked {
        background-position: -40px 0;
    }
    .icheckbox_minimal-grey.disabled {
        background-position: -60px 0;
        cursor: default;
    }
    .icheckbox_minimal-grey.checked.disabled {
        background-position: -80px 0;
    }

.iradio_minimal-grey {
    background-position: -100px 0;
}
    .iradio_minimal-grey.hover {
        background-position: -120px 0;
    }
    .iradio_minimal-grey.checked {
        background-position: -140px 0;
    }
    .iradio_minimal-grey.disabled {
        background-position: -160px 0;
        cursor: default;
    }
    .iradio_minimal-grey.checked.disabled {
        background-position: -180px 0;
    }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    .icheckbox_minimal-grey,
    .iradio_minimal-grey {
        background-image: url(../../files/theme/plugins/icheck/skins/minimal/grey@2x.png);
        -webkit-background-size: 200px 20px;
        background-size: 200px 20px;
    }
}
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }
  .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--single .select2-selection__rendered {
      display: block;
      padding-left: 8px;
      padding-right: 20px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px; }
  .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container .select2-search--inline {
    float: left; }
    .select2-container .select2-search--inline .select2-search__field {
      box-sizing: border-box;
      border: none;
      font-size: 100%;
      margin-top: 5px; }
      .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none; }
  .select2-results__option[aria-selected] {
    cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }
  .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box; }
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .select2-search--dropdown.select2-search--hide {
    display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold; }
  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }
  .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none; }
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%; }
  .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    margin-top: 5px;
    float: left; }
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #333; }
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder {
  float: right; }
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0; }
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }
.select2-container--default .select2-results__option[role=group] {
  padding: 0; }
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
      margin-left: -2em;
      padding-left: 3em; }
      .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -3em;
        padding-left: 4em; }
        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
          margin-left: -4em;
          padding-left: 5em; }
          .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -5em;
            padding-left: 6em; }
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f6f6f6;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #ffffff 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, #ffffff 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, #ffffff 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0); }
  .select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px; }
  .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0); }
    .select2-container--classic .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }
  .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none; }
    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
      border-color: transparent transparent #888 transparent;
      border-width: 0 4px 5px 4px; }
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, #ffffff 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0); }
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #ffffff 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #ffffff 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #ffffff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0); }
.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }
  .select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #555; }
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right; }
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0; }
.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent; }
.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }
.select2-container--classic .select2-dropdown--below {
  border-top: none; }
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }
.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }
.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white; }
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }

html{font-size: 62.5%;height: 100%}body,html{height: 100%}body{font-family: 'GeneralSans-Regular', Arial, Helvetica, sans-serif;color: #0f0921;font-size: 18px}@media screen and (min-width: 768px) and (max-width: 1023px){body{font-size: 18px}}@media screen and (max-width: 767px){body{font-size: 18px}}button,input{-webkit-appearance: none}#wrapper,#footer{font-size: 18px}@media screen and (min-width: 768px) and (max-width: 1023px){#wrapper,#footer{font-size: 18px}}@media screen and (max-width: 767px){#wrapper,#footer{font-size: 18px}}#wrapper{height: auto;min-height: 100%}h1,h2,h3,h4,h5,h6{margin: 1em 0 .5em 0;line-height: 1.2em}h1{margin-top: 0;font-size: 18px}@media screen and (min-width: 768px) and (max-width: 1023px){h1{font-size: 18px}}@media screen and (max-width: 767px){h1{font-size: 18px}}h2{font-size: 16px}@media screen and (min-width: 768px) and (max-width: 1023px){h2{font-size: 18px}}@media screen and (max-width: 767px){h2{font-size: 18px}}h3{font-size: 15px}@media screen and (min-width: 768px) and (max-width: 1023px){h3{font-size: 18px}}@media screen and (max-width: 767px){h3{font-size: 18px}}a{color: #3e2682}img{max-width: 100%;height: auto}ul{list-style: none;margin: 0;padding: 0}#main .ce_text a{text-decoration: none}#main .ce_text a:hover{text-decoration: underline}#main .ce_text p{margin: 0 0 1.5em 0;line-height: 1.4em}#main .ce_text p + ul{margin-top: -10px}#main .ce_text ul{margin-left: 10px;margin-bottom: 25px;list-style: none}#main .ce_text ul li{position: relative;line-height: 1.3em;margin-bottom: .1em;padding-left: 12px}#main .ce_text ul li:before{content: '';width: 6px;height: 6px;display: block;background: #3e2682;position: absolute;left: 0;top: 6px}#cboxWrapper #cboxPrevious{background: url(../../files/theme/i/icons/arrow-left.png) no-repeat top right;left: 20px;width: 42px}#cboxWrapper #cboxNext{background: url(../../files/theme/i/icons/arrow-right.png) no-repeat top right;right: 20px;width: 42px}#cboxWrapper #cboxClose{background: url(../../files/theme/i/icons/close.png) no-repeat top right;right: 20px;top: 20px;background-size: 50%}#cboxWrapper #cboxTitle,#cboxWrapper #cboxCurrent{display: none !important}:focus{outline: none}
form .widget{position: relative;margin-bottom: 13px}form .widget label{color: #707070}form .widget:last-child{margin-bottom: 0}form .widget select,form .widget input[type="text"],form .widget input[type="email"],form .widget input[type="number"],form .widget input[type="search"],form .widget input[type="tel"],form .widget textarea{font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 15px;color: #0f0921;background-color: #ffffff;border-width: 1px;border-style: solid;border-color: #E9E9E9;border-radius: 4px;padding: 15px 15px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;outline: none;width: 100%}form .widget select:hover,form .widget input[type="text"]:hover,form .widget input[type="email"]:hover,form .widget input[type="number"]:hover,form .widget input[type="search"]:hover,form .widget input[type="tel"]:hover,form .widget textarea:hover{border-color: #b4b4b4}form .widget select{text-overflow: '';-webkit-appearance: none;-moz-appearance: none}form .widget.invalid > label{color: red}form .widget.invalid.mandatory:before{color: red !important}form .widget p.error{color: red;padding: 10px 0;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;font-size: 16px}form .widget .input-container{position: relative;z-index: 1}form .widget .input-container select{height: 54px;padding-top: 20px;padding-bottom: 13px}form .widget .input-container:before{content: "";pointer-events: none;display: block;width: 13px;height: auto;aspect-ratio: 13.743/7.858;background-image: url("/files/theme/i/icons/select-arrow.svg");background-repeat: no-repeat;background-position: center center;position: absolute;top: 50%;right: 15px;-moz-transform: translate(0, -50%);-webkit-transform: translate(0, -50%);-o-transform: translate(0, -50%);-ms-transform: translate(0, -50%);transform: translate(0, -50%);-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}form .widget .input-container:focus-within:before{-moz-transform: translate(0, -50%) rotate(-180deg);-webkit-transform: translate(0, -50%) rotate(-180deg);-o-transform: translate(0, -50%) rotate(-180deg);-ms-transform: translate(0, -50%) rotate(-180deg);transform: translate(0, -50%) rotate(-180deg)}form .widget.widget-select label{position: absolute;top: 8px;left: 0;font-size: 11px;padding: 0 15px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;font-family: 'GeneralSans-Regular';font-weight: 400;z-index: 2;pointer-events: none;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}form .widget.widget-select select{display: block;min-width: 150px;padding-right: 43px}form .widget.widget-select select option{font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 15px;color: #747474;background-color: #ffffff}form .widget.widget-select.empty-selected label{top: 50%;left: 0;font-size: 15px;font-family: 'GeneralSans-Medium';font-weight: 500;-moz-transform: translate(0, -50%);-webkit-transform: translate(0, -50%);-o-transform: translate(0, -50%);-ms-transform: translate(0, -50%);transform: translate(0, -50%)}form .widget.widget-select.invalid select{border: 1px solid #f00;box-shadow: none;background-color: ivory;color: red}form .widget.widget-select.invalid .input-container:before{filter: invert(25%) sepia(94%) saturate(7406%) hue-rotate(357deg) brightness(103%) contrast(117%)}form .widget.widget-text input,form .widget.widget-location-google input{font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 15px}form .widget.widget-text.input-focus label,form .widget.widget-location-google.input-focus label{position: absolute;top: 50%;left: 0;-moz-transform: translate(0, -50%);-webkit-transform: translate(0, -50%);-o-transform: translate(0, -50%);-ms-transform: translate(0, -50%);transform: translate(0, -50%);z-index: 2;font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 15px;padding: 0 15px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}form .widget.widget-text.input-focus label.has-focus,form .widget.widget-location-google.input-focus label.has-focus{top: 8px;left: 0;font-size: 11px;-moz-transform: translate(0, 0);-webkit-transform: translate(0, 0);-o-transform: translate(0, 0);-ms-transform: translate(0, 0);transform: translate(0, 0);font-family: 'GeneralSans-Regular';font-weight: 400}form .widget.widget-text.input-focus input,form .widget.widget-location-google.input-focus input{position: relative;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;height: 54px;padding-top: 20px;padding-bottom: 13px;z-index: 1}form .widget.widget-text.invalid input,form .widget.widget-location-google.invalid input{border: 1px solid #f00;box-shadow: none;background-color: ivory}form .widget.widget-textarea textarea{display: block;width: 100%;height: auto;resize: none;font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 15px}form .widget.widget-textarea textarea::-webkit-input-placeholder{opacity: 1;color: #0f0921}form .widget.widget-textarea textarea:-moz-placeholder{opacity: 1;color: #0f0921}form .widget.widget-textarea textarea::-moz-placeholder{opacity: 1;color: #0f0921}form .widget.widget-textarea textarea:-ms-input-placeholder{opacity: 1;color: #0f0921}form .widget.widget-textarea.input-focus label{position: absolute;top: 15px;left: 0;z-index: 2;font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 15px;padding: 0 15px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}form .widget.widget-textarea.input-focus label.has-focus{top: 8px;left: 0;font-size: 11px;font-family: 'GeneralSans-Regular';font-weight: 400}form .widget.widget-textarea.input-focus textarea{position: relative;z-index: 1;padding-top: 20px}form .widget.widget-textarea.invalid textarea{border: 1px solid #f00;box-shadow: none;background-color: ivory}form .widget.widget-reset button{position: relative;background: transparent;border: none;cursor: pointer;height: 50px}form .widget.widget-reset button svg,form .widget.widget-reset button span{display: inline-block;vertical-align: middle}form .widget.widget-reset button svg{position: absolute;top: 50%;left: 0;-moz-transform: translate(0, -50%);-webkit-transform: translate(0, -50%);-o-transform: translate(0, -50%);-ms-transform: translate(0, -50%);transform: translate(0, -50%);-webkit-transition: all 1s ease-in-out;-moz-transition: all 1s ease-in-out;transition: all 1s ease-in-out;overflow: visible}form .widget.widget-reset button span{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 16px;padding-left: 23px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box}form .widget.widget-reset button:hover svg{-moz-transform: translate(0, -50%) rotate(360deg);-webkit-transform: translate(0, -50%) rotate(360deg);-o-transform: translate(0, -50%) rotate(360deg);-ms-transform: translate(0, -50%) rotate(360deg);transform: translate(0, -50%) rotate(360deg)}form .widget.widget-checkbox span{display: grid;grid-template-columns: auto minmax(0, 1fr);justify-content: flex-start;align-items: flex-start;column-gap: 11px;row-gap: 0}form .widget.widget-checkbox span input{display: block;width: 16px;height: auto;aspect-ratio: 1/1;-webkit-appearance: auto;margin: 2px 0 0 0;padding: 0}form .widget.widget-checkbox span label{font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 12px;line-height: 1.5}form .widget.widget-checkbox span label a{color: #3e2682}form .widget.widget-checkbox.invalid span label{color: red}form .widget.widget-submit button{height: 50px;line-height: 50px;background-color: #dddc03;border-radius: 25px;border: none;cursor: pointer;font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 18px;letter-spacing: 0.02em;text-align: center;padding: 0 40px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out;color: #3e2682}form .widget.widget-submit button:hover{background-color: #3e2682;color: #fff}
#cookiebar{background: #fff;color: #3e2682;border-top: 1px solid #d3d3d3}#cookiebar a{color: #3e2682}#cookiebar button{font-size: 13px;margin-left: 0;text-decoration: none;background: #3e2682;border: 1px solid #3e2682;color: #fff;font-weight: 400;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;width: auto;cursor: pointer;padding: 8px 10px;display: inline-block;vertical-align: middle;text-transform: capitalize;height: auto;line-height: 1em;-webkit-transition: all .3s ease-out;-moz-transition: all .3s ease-out;transition: all .3s ease-out;-webkit-appearance: none;-moz-appearance: none;appearance: none}@media screen and (min-width: 768px) and (max-width: 1023px){#cookiebar button{font-size: 18px}}@media screen and (max-width: 767px){#cookiebar button{font-size: 18px}}#cookiebar button:hover{background: none;color: #3e2682}#cookiebar button:focus{outline: none !important}
#header{position: fixed;top: 0;left: 0;width: 100%;background-color: rgba(255,255,255,0.9);-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out;padding: 30px 0 0 0;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box}@media screen and (max-width: 1023px){#header{padding: 15px 0}}#header:after{content: "";position: absolute;top: 100%;left: 0;width: 100%;height: 8px;background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(255,255,255,0) 100%)}body.fixed-header.home #header{background-color: transparent}body.fixed-header.home #header:after{display: none}body.fixed-header.home.scrolled #header{background-color: rgba(255,255,255,0.9)}body.fixed-header.home.scrolled #header:after{display: block}body.fixed-header.menu-hover #header,body.fixed-header.scrolled.menu-hover #header{background-color: #fff}body.fixed-header.menu-hover #header:after,body.fixed-header.scrolled.menu-hover #header:after{display: block}body.up #header{-moz-transform: translate(0, -110%);-webkit-transform: translate(0, -110%);-o-transform: translate(0, -110%);-ms-transform: translate(0, -110%);transform: translate(0, -110%);-moz-transform: translate(0, calc(-100% - 16px));-webkit-transform: translate(0, calc(-100% - 16px));-o-transform: translate(0, calc(-100% - 16px));-ms-transform: translate(0, calc(-100% - 16px));transform: translate(0, calc(-100% - 16px))}#header .inside{max-width: 100%;width: 1440px;margin: 0 auto;padding-left: 15px;padding-right: 15px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;position: static;margin-bottom: 21.8px;display: grid;grid-template-columns: auto minmax(0, 1fr);justify-content: flex-start;align-items: stretch;column-gap: 150px;row-gap: 0}@media screen and (min-width: 1024px) and (max-width: 1200px){#header .inside{column-gap: 0}}@media screen and (max-width: 1023px){#header .inside{margin-bottom: 0}}#header .inside .logo{width: 200px;z-index: 2}body.home #header .inside .logo{opacity: 0}body.home.scrolled #header .inside .logo{opacity: 1}@media screen and (min-width: 1024px) and (max-width: 1200px){#header .inside .logo{width: 120px}}#header .inside .logo img{display: block;width: 44.8px;height: auto;margin: 0 auto}@media screen and (max-width: 1023px){#header .inside .logo{width: auto}#header .inside .logo img{width: 30px}}@media screen and (max-width: 1023px){#header .inside #nav_main{display: none}}#header .inside #nav_main > ul{display: grid;width: 100%;height: 100%;grid-auto-columns: auto;grid-auto-flow: column;column-gap: 50px;justify-content: flex-start;align-items: stretch}#header .inside #nav_main > ul > li{display: flex;height: 100%}#header .inside #nav_main > ul > li > a,#header .inside #nav_main > ul > li > strong{position: relative;z-index: 2;align-self: center;text-decoration: none;padding-bottom: 8px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;overflow: hidden;font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 18px;line-height: 1.33333333;letter-spacing: 0.1em;text-transform: uppercase;color: #3e2682}@media screen and (min-width: 768px) and (max-width: 1023px){#header .inside #nav_main > ul > li > a,#header .inside #nav_main > ul > li > strong{font-size: 18px}}@media screen and (max-width: 767px){#header .inside #nav_main > ul > li > a,#header .inside #nav_main > ul > li > strong{font-size: 18px}}#header .inside #nav_main > ul > li > a:after,#header .inside #nav_main > ul > li > strong:after{content: "";display: block;width: 100%;height: 8px;background-color: #dddc03;position: absolute;bottom: 0;left: -2px;-moz-transform: translate(-100%, 0);-webkit-transform: translate(-100%, 0);-o-transform: translate(-100%, 0);-ms-transform: translate(-100%, 0);transform: translate(-100%, 0);-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}body.fixed-header.home:not(.scrolled) #header .inside #nav_main > ul > li > a:after,body.fixed-header.home:not(.scrolled) #header .inside #nav_main > ul > li > strong:after{background-color: #3e2682}#header .inside #nav_main > ul > li > strong{cursor: default}#header .inside #nav_main > ul > li > div.submenu{position: absolute;width: 100%;opacity: 0;pointer-events: none;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out;top: 100%;left: 0;z-index: 1;-moz-transform: translate(0, -21.8px);-webkit-transform: translate(0, -21.8px);-o-transform: translate(0, -21.8px);-ms-transform: translate(0, -21.8px);transform: translate(0, -21.8px);padding-top: 56.6px;padding-bottom: 54.2px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;background-color: #fff}#header .inside #nav_main > ul > li > div.submenu:after{content: "";position: absolute;top: 100%;left: 0;width: 100%;height: 8px;background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(255,255,255,0) 100%)}#header .inside #nav_main > ul > li > div.submenu:before{content: "";position: absolute;bottom: 0;left: 50%;transform: translate(-50%, 0);width: 100%;height: calc( 100% + 135px );z-index: 1;background-image: url("/files/theme/i/bg/submenu-arrow-bg.svg");background-size: contain;background-repeat: no-repeat;background-position: center center}body.up #header .inside #nav_main > ul > li > div.submenu{pointer-events: none}#header .inside #nav_main > ul > li > div.submenu > .outer{position: relative;background-color: transparent;z-index: 2}#header .inside #nav_main > ul > li > div.submenu > .outer .inner{max-width: 100%;width: 1440px;margin: 0 auto;padding-left: 15px;padding-right: 15px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;display: grid;grid-template-columns: auto minmax(0, 1fr);justify-content: center;align-items: center;column-gap: 87px;row-gap: 0}#header .inside #nav_main > ul > li > div.submenu > .outer .inner > .slogan{font-family: 'GeneralSans-Bold';font-weight: 700;font-size: 71px;line-height: .86111111;color: #dddc03;text-transform: uppercase;max-width: 262px}@media screen and (min-width: 768px) and (max-width: 1023px){#header .inside #nav_main > ul > li > div.submenu > .outer .inner > .slogan{font-size: 63.9px}}@media screen and (max-width: 767px){#header .inside #nav_main > ul > li > div.submenu > .outer .inner > .slogan{font-size: 56.8px}}#header .inside #nav_main > ul > li > div.submenu > .outer .inner > ul{display: grid;grid-template-columns: repeat(3, minmax(0, 1fr));justify-content: flex-start;align-items: flex-start;column-gap: 70px;row-gap: 40.2px}#header .inside #nav_main > ul > li > div.submenu > .outer .inner > ul > li a{color: inherit;text-decoration: none}#header .inside #nav_main > ul > li > div.submenu > .outer .inner > ul > li a:after{content: "";-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out;display: block;margin-top: 6px;width: 20.575px;height: auto;aspect-ratio: 20.575/16.812;background-image: url("/files/theme/i/icons/arrow-right-yellow.svg");background-size: contain;background-repeat: no-repeat;background-position: center center}#header .inside #nav_main > ul > li > div.submenu > .outer .inner > ul > li a:hover:after{margin-left: 5px}#header .inside #nav_main > ul > li > div.submenu > .outer .inner > ul > li .category > div strong{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 18px;line-height: 1.33333333;color: #3e2682}@media screen and (min-width: 768px) and (max-width: 1023px){#header .inside #nav_main > ul > li > div.submenu > .outer .inner > ul > li .category > div strong{font-size: 18px}}@media screen and (max-width: 767px){#header .inside #nav_main > ul > li > div.submenu > .outer .inner > ul > li .category > div strong{font-size: 18px}}#header .inside #nav_main > ul > li > div.submenu > .outer .inner > ul > li .category > div div{font-family: 'GeneralSans-Regular';font-weight: 400;font-size: 16px;line-height: 1.375;color: #707070}@media screen and (min-width: 768px) and (max-width: 1023px){#header .inside #nav_main > ul > li > div.submenu > .outer .inner > ul > li .category > div div{font-size: 18px}}@media screen and (max-width: 767px){#header .inside #nav_main > ul > li > div.submenu > .outer .inner > ul > li .category > div div{font-size: 18px}}#header .inside #nav_main > ul > li > div.submenu > .outer .inner > ul > li.active .category > div strong,#header .inside #nav_main > ul > li > div.submenu > .outer .inner > ul > li.trail .category > div strong{text-decoration: underline;text-decoration-thickness: 5px;text-decoration-skip-ink: none;text-decoration-color: #dddc03;text-underline-offset: 4px}#header .inside #nav_main > ul > li > div.submenu > .outer .inner > ul > li.active .category > div > div,#header .inside #nav_main > ul > li > div.submenu > .outer .inner > ul > li.trail .category > div > div{margin-top: 10px}#header .inside #nav_main > ul > li.trail > a:after,#header .inside #nav_main > ul > li.active > a:after,#header .inside #nav_main > ul > li.trail > strong:after,#header .inside #nav_main > ul > li.active > strong:after{left: 0;-moz-transform: translate(0, 0);-webkit-transform: translate(0, 0);-o-transform: translate(0, 0);-ms-transform: translate(0, 0);transform: translate(0, 0)}#header .inside #nav_main > ul > li:hover > a:after,#header .inside #nav_main > ul > li:hover > strong:after{left: 0;-moz-transform: translate(0, 0);-webkit-transform: translate(0, 0);-o-transform: translate(0, 0);-ms-transform: translate(0, 0);transform: translate(0, 0)}#header .inside #nav_main > ul > li:hover > div.submenu{opacity: 1;pointer-events: all}#header .inside .menu-trigger{position: absolute;top: 50%;right: 15px;-moz-transform: translate(0, -50%);-webkit-transform: translate(0, -50%);-o-transform: translate(0, -50%);-ms-transform: translate(0, -50%);transform: translate(0, -50%);width: 31px;height: 20px;z-index: 100;cursor: pointer}@media screen and (min-width: 1024px){#header .inside .menu-trigger{display: none}}#header .inside .menu-trigger span{position: relative;text-indent: -9999px;opacity: 0;pointer-events: none;visibility: hidden}#header .inside .menu-trigger .bar{position: absolute;left: 0;width: 100%;height: 2px;display: block;background-color: #0f0921;-moz-transition: transform .5s ease-in-out, opacity .5s ease-in-out, transform-origin .5s ease-in-out, top .5s ease-in-out, left .5s ease-in-out, position .5s ease-in-out, width .5s ease-in-out;-webkit-transition: transform .5s ease-in-out, opacity .5s ease-in-out, transform-origin .5s ease-in-out, top .5s ease-in-out, left .5s ease-in-out, position .5s ease-in-out, width .5s ease-in-out;-o-transition: transform .5s ease-in-out, opacity .5s ease-in-out, transform-origin .5s ease-in-out, top .5s ease-in-out, left .5s ease-in-out, position .5s ease-in-out, width .5s ease-in-out;-ms-transition: transform .5s ease-in-out, opacity .5s ease-in-out, transform-origin .5s ease-in-out, top .5s ease-in-out, left .5s ease-in-out, position .5s ease-in-out, width .5s ease-in-out;transition: transform .5s ease-in-out, opacity .5s ease-in-out, transform-origin .5s ease-in-out, top .5s ease-in-out, left .5s ease-in-out, position .5s ease-in-out, width .5s ease-in-out;-moz-transform: translate(0, 0);-webkit-transform: translate(0, 0);-o-transform: translate(0, 0);-ms-transform: translate(0, 0);transform: translate(0, 0)}#header .inside .menu-trigger .bar.bar1{top: 0;width: 100%}body.active-menu #header .inside .menu-trigger .bar.bar1{width: 100%}#header .inside .menu-trigger .bar.bar2{top: 50%;width: 100%;-moz-transform: translate(0, -50%);-webkit-transform: translate(0, -50%);-o-transform: translate(0, -50%);-ms-transform: translate(0, -50%);transform: translate(0, -50%)}body.active-menu #header .inside .menu-trigger .bar.bar2{width: 100%}#header .inside .menu-trigger .bar.bar3{bottom: 0;width: 100%}body.active-menu #header .inside .menu-trigger .bar.bar1,body.active-menu #header .inside .menu-trigger .bar.bar2{-moz-transform: rotate(45deg) translate(-50%, -50%);-webkit-transform: rotate(45deg) translate(-50%, -50%);-o-transform: rotate(45deg) translate(-50%, -50%);-ms-transform: rotate(45deg) translate(-50%, -50%);transform: rotate(45deg) translate(-50%, -50%);-moz-transform-origin: 0 0;-webkit-transform-origin: 0 0;-o-transform-origin: 0 0;-ms-transform-origin: 0 0;transform-origin: 0 0;position: absolute;top: 50%;left: 50%}body.active-menu #header .inside .menu-trigger .bar.bar2{-moz-transform: rotate(-45deg) translate(-50%, -50%);-webkit-transform: rotate(-45deg) translate(-50%, -50%);-o-transform: rotate(-45deg) translate(-50%, -50%);-ms-transform: rotate(-45deg) translate(-50%, -50%);transform: rotate(-45deg) translate(-50%, -50%)}body.active-menu #header .inside .menu-trigger .bar.bar3{opacity: 0}#wrapper{position: relative}#wrapper #container{position: relative;z-index: 1;-moz-transition: filter .3s ease-in-out;-webkit-transition: filter .3s ease-in-out;-o-transition: filter .3s ease-in-out;-ms-transition: filter .3s ease-in-out;transition: filter .3s ease-in-out}#wrapper #footer{position: relative;z-index: 2;-moz-transition: filter .3s ease-in-out;-webkit-transition: filter .3s ease-in-out;-o-transition: filter .3s ease-in-out;-ms-transition: filter .3s ease-in-out;transition: filter .3s ease-in-out}#wrapper:after{content: "";background-color: rgba(0,0,0,0.4);display: block;width: 100%;height: 100%;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out;position: absolute;top: 0;left: 0;opacity: 0;pointer-events: none;z-index: 4}#wrapper #header{z-index: 5}@media screen and (min-width: 1024px){body.active-menu #wrapper #container,body.active-menu #wrapper #footer{-moz-filter: blur(5px);-webkit-filter: blur(5px);-o-filter: blur(5px);-ms-filter: blur(5px);filter: blur(5px)}body.active-menu #wrapper:after{opacity: 1}body.blur-all #wrapper #header,body.blur-all #wrapper #container,body.blur-all #wrapper #footer{-moz-filter: blur(5px);-webkit-filter: blur(5px);-o-filter: blur(5px);-ms-filter: blur(5px);filter: blur(5px);pointer-events: none}body.blur-all #wrapper:after{opacity: 1;z-index: 6}}.mod_mmenu .mm-navbars_top .mm-navbar .mm-navbar__title > span{overflow: visible}.mod_mmenu .mm-navbars_top .mm-navbar:first-child > span{position: relative;display: block;min-height: 0;margin: 0;padding: 0 15px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;padding-top: 30px;padding-bottom: 30px;text-align: left}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_mmenu .mm-navbars_top .mm-navbar:first-child > span{padding-top: 27px}}@media screen and (max-width: 767px){.mod_mmenu .mm-navbars_top .mm-navbar:first-child > span{padding-top: 24px}}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_mmenu .mm-navbars_top .mm-navbar:first-child > span{padding-bottom: 27px}}@media screen and (max-width: 767px){.mod_mmenu .mm-navbars_top .mm-navbar:first-child > span{padding-bottom: 24px}}.mod_mmenu .mm-navbars_top .mm-navbar:first-child > span .mmenu_logo{font-size: 0;line-height: 0}.mod_mmenu .mm-navbars_top .mm-navbar:first-child > span .mmenu_logo img,.mod_mmenu .mm-navbars_top .mm-navbar:first-child > span .mmenu_logo svg{width: 30px;max-width: 90%;height: auto}.mod_mmenu .mm-navbars_top .mm-navbar:first-child > span .mobile_icon{position: absolute;top: 50%;right: 15px;-moz-transform: translate(0, -50%);-webkit-transform: translate(0, -50%);-o-transform: translate(0, -50%);-ms-transform: translate(0, -50%);transform: translate(0, -50%);width: 25.65px;height: 25.65px;border-top: 2px solid #000;border-bottom: 2px solid #000;cursor: pointer;display: block;text-indent: -9999px}.mod_mmenu .mm-navbars_top .mm-navbar:first-child > span .mobile_icon a{line-height: 1em;text-indent: -4000em;text-align: left}.mod_mmenu .mm-navbars_top .mm-navbar:first-child > span .mobile_icon:before{content: '';position: absolute;top: 50%;left: 50%;height: 2px;background: #000;width: 100%;-moz-transform: rotate(0deg) translate(-50%, -50%);-webkit-transform: rotate(0deg) translate(-50%, -50%);-o-transform: rotate(0deg) translate(-50%, -50%);-ms-transform: rotate(0deg) translate(-50%, -50%);transform: rotate(0deg) translate(-50%, -50%)}.mod_mmenu .mm-navbars_top .mm-navbar:first-child > span .mobile_icon:after{content: '';position: absolute;top: 50%;left: 50%;height: 2px;background: #000;width: 100%;-moz-transform: rotate(0deg) translate(-50%, -50%);-webkit-transform: rotate(0deg) translate(-50%, -50%);-o-transform: rotate(0deg) translate(-50%, -50%);-ms-transform: rotate(0deg) translate(-50%, -50%);transform: rotate(0deg) translate(-50%, -50%)}.mod_mmenu .mm-navbars_top .mm-navbar:first-child > span .mobile_icon.exit{border-color: transparent}.mod_mmenu .mm-navbars_top .mm-navbar:first-child > span .mobile_icon.exit:before,.mod_mmenu .mm-navbars_top .mm-navbar:first-child > span .mobile_icon.exit:after{-moz-transform: rotate(45deg) translate(-50%, -50%);-webkit-transform: rotate(45deg) translate(-50%, -50%);-o-transform: rotate(45deg) translate(-50%, -50%);-ms-transform: rotate(45deg) translate(-50%, -50%);transform: rotate(45deg) translate(-50%, -50%);-moz-transform-origin: 0 0;-webkit-transform-origin: 0 0;-o-transform-origin: 0 0;-ms-transform-origin: 0 0;transform-origin: 0 0;-moz-transition: transform .25s ease-in-out;-webkit-transition: transform .25s ease-in-out;-o-transition: transform .25s ease-in-out;-ms-transition: transform .25s ease-in-out;transition: transform .25s ease-in-out;position: absolute;top: 50%;left: 50%}.mod_mmenu .mm-navbars_top .mm-navbar:first-child > span .mobile_icon.exit:before{-moz-transform: rotate(-45deg) translate(-50%, -50%);-webkit-transform: rotate(-45deg) translate(-50%, -50%);-o-transform: rotate(-45deg) translate(-50%, -50%);-ms-transform: rotate(-45deg) translate(-50%, -50%);transform: rotate(-45deg) translate(-50%, -50%)}.mod_mmenu .mm-navbars_top .mm-navbar:first-child > span .mobile_icon.exit:after{opacity: 1}.mod_mmenu .mm-navbars_top .mm-navbar:last-child{position: relative;min-height: 0;border: none}.mod_mmenu .mm-navbars_top .mm-navbar:last-child:after{content: "";position: absolute;bottom: 0;left: 15px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;display: block;width: 100%;width: calc(100% - 30px);height: 1px;background-color: #BEBEBE}.mod_mmenu .mm-navbars_top .mm-navbar:last-child .mm-navbar__title{text-align: left;font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 20px;line-height: .83333333;letter-spacing: 0.05em;color: #3e2682;min-height: 0;justify-content: left;padding-top: 26px;padding-bottom: 26px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box}.mod_mmenu .mm-navbars_top .mm-navbar:last-child .mm-navbar__btn.mm-btn_prev{min-height: 0}.mod_mmenu .mm-navbars_top .mm-navbar:last-child .mm-navbar__btn.mm-btn_prev:before{border-color: #3e2682}.mod_mmenu .mm-navbars_top .mm-navbar:last-child.empty{display: none}.mod_mmenu .mm-listview li{border: none}.mod_mmenu .mm-listview li:after{border: none;left: 15px;right: auto;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;display: block;width: 100%;width: calc(100% - 30px);height: 1px;background-color: #BEBEBE}.mod_mmenu .mm-listview li > .mm-listitem__text{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 20px;line-height: .83333333;letter-spacing: 0.05em;color: #0f0921;padding-top: 26px;padding-bottom: 26px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box}.mod_mmenu .mm-listview li > .mm-listitem__text.has_icon .inner{position: relative;padding-left: 75px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;display: inline-block}.mod_mmenu .mm-listview li > .mm-listitem__text.has_icon .inner:after{display: none}.mod_mmenu .mm-listview li > .mm-listitem__text.has_icon .inner img,.mod_mmenu .mm-listview li > .mm-listitem__text.has_icon .inner svg{position: absolute;top: 50%;left: 0;-moz-transform: translate(0, -50%);-webkit-transform: translate(0, -50%);-o-transform: translate(0, -50%);-ms-transform: translate(0, -50%);transform: translate(0, -50%);width: 55px;height: 55px;-moz-object-fit: contain;-webkit-object-fit: contain;-o-object-fit: contain;-ms-object-fit: contain;object-fit: contain;-moz-object-position: center center;-webkit-object-position: center center;-o-object-position: center center;-ms-object-position: center center;object-position: center center;font-family: "object-fit:contain; object-position:center center;"}.mod_mmenu .mm-listview li > .mm-listitem__text.has_icon .inner img [fill="#434448"],.mod_mmenu .mm-listview li > .mm-listitem__text.has_icon .inner svg [fill="#434448"],.mod_mmenu .mm-listview li > .mm-listitem__text.has_icon .inner img [stroke="#434448"],.mod_mmenu .mm-listview li > .mm-listitem__text.has_icon .inner svg [stroke="#434448"]{-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}.mod_mmenu .mm-listview li > .mm-listitem__text.has_icon .inner span{display: block;padding-bottom: 0}.mod_mmenu .mm-listview li > .mm-listitem__text.has_icon.active .inner svg [fill="#434448"],.mod_mmenu .mm-listview li > .mm-listitem__text.has_icon.trail .inner svg [fill="#434448"]{fill: #3e2682}.mod_mmenu .mm-listview li > .mm-listitem__text.has_icon.active .inner svg [stroke="#434448"],.mod_mmenu .mm-listview li > .mm-listitem__text.has_icon.trail .inner svg [stroke="#434448"]{stroke: #3e2682}.mod_mmenu .mm-listview li > .mm-listitem__text.has_icon.active .inner span,.mod_mmenu .mm-listview li > .mm-listitem__text.has_icon.trail .inner span{color: #3e2682}.mod_mmenu .mm-listview li > .mm-listitem__btn{border-left: none}.mod_mmenu .mm-listview li > .mm-listitem__btn:after{border-color: #0f0921}.mod_mmenu .mm-listview li.mm-listitem_selected > .mm-listitem__text{color: #3e2682;background-color: transparent}.mod_mmenu .mm-listview li.mm-listitem_selected > .mm-listitem__btn:after{border-color: #3e2682}.mod_mmenu .mm-navbars_bottom .mm-navbar{text-align: center;display: block}.mod_mmenu .mm-navbars_bottom .mm-navbar:first-child{border-top: none}.mod_mmenu .mm-navbars_bottom .mm-navbar .contact{position: relative;display: inline-block;width: auto;margin: 30px auto;line-height: 50px;min-height: 0;color: #0f0921;background-color: transparent;border-radius: 30px;font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 16px;letter-spacing: 0.1em;text-transform: uppercase;border: 1px solid #3e2682;padding: 0 20px 0 62px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;white-space: nowrap}.mod_mmenu .mm-navbars_bottom .mm-navbar .contact figure{display: inline-block;width: 50px;height: 50px;border-radius: 100%;background-color: #3e2682;position: absolute;top: 0;left: 0}.mod_mmenu .mm-navbars_bottom .mm-navbar .contact figure img,.mod_mmenu .mm-navbars_bottom .mm-navbar .contact figure svg{display: block;width: 100%;height: 100%;-moz-object-fit: contain;-webkit-object-fit: contain;-o-object-fit: contain;-ms-object-fit: contain;object-fit: contain;-moz-object-position: center center;-webkit-object-position: center center;-o-object-position: center center;-ms-object-position: center center;object-position: center center;font-family: "object-fit:contain; object-position:center center;";padding: 10px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;max-width: 45px;margin: 0 auto}.rsce_footer .top{background-color: #3e2682;color: #fff;padding: 40px 0;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box}.rsce_footer .top .wrap{max-width: 100%;width: 1440px;margin: 0 auto;padding-left: 15px;padding-right: 15px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;display: grid;grid-template-columns: auto repeat(5, minmax(0, 1fr));justify-content: flex-start;align-items: flex-start;column-gap: 81px;row-gap: 0}@media screen and (min-width: 1024px) and (max-width: 1200px){.rsce_footer .top .wrap{column-gap: 40px}}@media screen and (min-width: 600px) and (max-width: 1023px){.rsce_footer .top .wrap{grid-template-columns: repeat(3, minmax(0, 1fr));row-gap: 30px;column-gap: 20px}}@media screen and (max-width: 599px){.rsce_footer .top .wrap{grid-template-columns: 100%;row-gap: 30px;text-align: left}}.rsce_footer .top .wrap .col a{color: inherit;text-decoration: none;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}.rsce_footer .top .wrap .col a:hover{color: #dddc03}.rsce_footer .top .wrap .col.col-column .headline{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 15px;line-height: 1.53333333;letter-spacing: 0.015em;margin: 0 0 13px 0}.rsce_footer .top .wrap .col.col-column .text{font-family: 'GeneralSans-Regular';font-weight: 400;font-size: 15px;line-height: 1.53333333;letter-spacing: 0.015em}.rsce_footer .top .wrap .col.col-column.col2{max-width: 200px}@media screen and (max-width: 1023px){.rsce_footer .top .wrap .col.col-column.col2{max-width: 100%}}.rsce_footer .top .wrap .col.col-links .text ul li{margin-bottom: 9px}.rsce_footer .top .wrap .col.col-links .text ul li a{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 15px;letter-spacing: 0.1em;text-transform: uppercase}.rsce_footer .top .wrap .col.col-socials .headline{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 15px;line-height: 1.53333333;letter-spacing: 0.015em;margin: 0 0 13px 0}.rsce_footer .top .wrap .col.col-socials .socials{font-size: 0;line-height: 0;margin-left: -12px;margin-top: 14px}.rsce_footer .top .wrap .col.col-socials .socials > *{font-size: 18px;line-height: normal}@media screen and (min-width: 768px) and (max-width: 1023px){.rsce_footer .top .wrap .col.col-socials .socials > *{font-size: 18px}}@media screen and (max-width: 767px){.rsce_footer .top .wrap .col.col-socials .socials > *{font-size: 18px}}.rsce_footer .top .wrap .col.col-socials .socials li{display: inline-block;vertical-align: middle}.rsce_footer .top .wrap .col.col-socials .socials li a{display: inline-block;padding: 0 12px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box}.rsce_footer .top .wrap .col.col-socials .socials li a svg svg [stroke],.rsce_footer .top .wrap .col.col-socials .socials li a svg svg [fill]{-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}.rsce_footer .top .wrap .col.col-socials .socials li a:hover svg [stroke="#f4f4f4"]{stroke: #dddc03}.rsce_footer .top .wrap .col.col-socials .socials li a:hover svg [fill="#f4f4f4"]{fill: #dddc03}.rsce_footer .bottom .wrap{max-width: 100%;width: 1440px;margin: 0 auto;padding-left: 15px;padding-right: 15px;display: grid;grid-template-columns: repeat(3, minmax(0, 1fr));justify-content: center;align-items: center;column-gap: 20px;row-gap: 0;padding: 23px 15px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;color: #868686;font-family: 'GeneralSans-Regular';font-weight: 400;font-size: 14px;letter-spacing: 0.02em;line-height: 1.35714286}@media screen and (max-width: 780px){.rsce_footer .bottom .wrap{grid-template-columns: 100%;text-align: center}}.rsce_footer .bottom .wrap .menu{text-align: center;white-space: nowrap}@media screen and (max-width: 780px){.rsce_footer .bottom .wrap .menu{white-space: normal;margin: 10px 0;text-align: inherit}}.rsce_footer .bottom .wrap .menu li{display: inline-block;vertical-align: middle}.rsce_footer .bottom .wrap .menu li:before{content: "|";display: inline-block;padding: 0 10px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box}@media screen and (max-width: 780px){.rsce_footer .bottom .wrap .menu li:before{padding: 0 5px}}.rsce_footer .bottom .wrap .menu li:first-child:before{display: none}.rsce_footer .bottom .wrap .madeby{text-align: right}@media screen and (max-width: 780px){.rsce_footer .bottom .wrap .madeby{text-align: inherit}}.rsce_footer .bottom .wrap a{color: inherit;padding-bottom: 5px;text-decoration: none;position: relative;line-height: normal}.rsce_footer .bottom .wrap a:after{content: "";position: absolute;width: 100%;height: 1px;bottom: 0;left: 0;background-color: #dddc03;visibility: hidden;-moz-transform: scaleX(0);-webkit-transform: scaleX(0);-o-transform: scaleX(0);-ms-transform: scaleX(0);transform: scaleX(0);-moz-transition: all .3s ease-in-out 0s;-webkit-transition: all .3s ease-in-out 0s;-o-transition: all .3s ease-in-out 0s;-ms-transition: all .3s ease-in-out 0s;transition: all .3s ease-in-out 0s}.rsce_footer .bottom .wrap a:hover:after{visibility: visible;-moz-transform: scaleX(1);-webkit-transform: scaleX(1);-o-transform: scaleX(1);-ms-transform: scaleX(1);transform: scaleX(1)}
@media screen and (max-width: 599px){.rsce_contentwrapper.mobile_mbottom80 > .inside{margin-bottom: 80px}}@media screen and (max-width: 599px){.rsce_contentwrapper.mobile_nopadding > .inside{padding: 0}}@media screen and (min-width: 600px) and (max-width: 1023px){.rsce_contentwrapper.tablet_nopadding > .inside{padding: 0}}.uppercase{text-transform: uppercase}.fntsz-57{font-size: 57px}@media screen and (min-width: 768px) and (max-width: 1023px){.fntsz-57{font-size: 51.3px}}@media screen and (max-width: 767px){.fntsz-57{font-size: 45.6px}}.fntsz-47{font-size: 47px}@media screen and (min-width: 768px) and (max-width: 1023px){.fntsz-47{font-size: 42.3px}}@media screen and (max-width: 767px){.fntsz-47{font-size: 37.6px}}.fntsz-40{font-size: 40px}@media screen and (min-width: 768px) and (max-width: 1023px){.fntsz-40{font-size: 36px}}@media screen and (max-width: 767px){.fntsz-40{font-size: 32px}}.fntsz-30{font-size: 30px}@media screen and (min-width: 768px) and (max-width: 1023px){.fntsz-30{font-size: 27px}}@media screen and (max-width: 767px){.fntsz-30{font-size: 24px}}.fntsz-23{font-size: 23px}@media screen and (min-width: 768px) and (max-width: 1023px){.fntsz-23{font-size: 20.7px}}@media screen and (max-width: 767px){.fntsz-23{font-size: 18.4px}}.fntsz-18{font-size: 18px}@media screen and (min-width: 768px) and (max-width: 1023px){.fntsz-18{font-size: 18px}}@media screen and (max-width: 767px){.fntsz-18{font-size: 18px}}.fntsz-16{font-size: 16px}@media screen and (min-width: 768px) and (max-width: 1023px){.fntsz-16{font-size: 18px}}@media screen and (max-width: 767px){.fntsz-16{font-size: 18px}}.fntsz-13{font-size: 13px}@media screen and (min-width: 768px) and (max-width: 1023px){.fntsz-13{font-size: 18px}}@media screen and (max-width: 767px){.fntsz-13{font-size: 18px}}.font-generalSansLight{font-family: 'GeneralSans-Light';font-weight: 300}.font-generalSansRegular{font-family: 'GeneralSans-Regular';font-weight: 400}.font-generalSansMedium{font-family: 'GeneralSans-Medium';font-weight: 500}.font-generalSansSemibold{font-family: 'GeneralSans-Semibold';font-weight: 600}.font-generalSansBold{font-family: 'GeneralSans-Bold';font-weight: 700}.color-blue{color: #3e2682}.color-yellow{color: #dddc03}.color-yellowLight{color: #f5f5b3}.color-yellowVeryLight{color: #fafae0}.color-gray{color: #f4f4f4}.button,.btn,.ce_button{display: inline-block;position: relative;text-decoration: none;cursor: pointer;border: none;line-height: 50px;white-space: nowrap}.button.buttonYellowBlue,.btn.buttonYellowBlue,.ce_button.buttonYellowBlue,.button.buttonBlueYellow,.btn.buttonBlueYellow,.ce_button.buttonBlueYellow{border-radius: 25px;padding: 0 22px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}.button.buttonYellowBlue span,.btn.buttonYellowBlue span,.ce_button.buttonYellowBlue span,.button.buttonBlueYellow span,.btn.buttonBlueYellow span,.ce_button.buttonBlueYellow span{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 18px;line-height: 1.33333333;letter-spacing: 0.02em;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out;color: inherit}@media screen and (min-width: 768px) and (max-width: 1023px){.button.buttonYellowBlue span,.btn.buttonYellowBlue span,.ce_button.buttonYellowBlue span,.button.buttonBlueYellow span,.btn.buttonBlueYellow span,.ce_button.buttonBlueYellow span{font-size: 18px}}@media screen and (max-width: 767px){.button.buttonYellowBlue span,.btn.buttonYellowBlue span,.ce_button.buttonYellowBlue span,.button.buttonBlueYellow span,.btn.buttonBlueYellow span,.ce_button.buttonBlueYellow span{font-size: 18px}}.button.buttonYellowBlue img,.btn.buttonYellowBlue img,.ce_button.buttonYellowBlue img,.button.buttonBlueYellow img,.btn.buttonBlueYellow img,.ce_button.buttonBlueYellow img,.button.buttonYellowBlue svg,.btn.buttonYellowBlue svg,.ce_button.buttonYellowBlue svg,.button.buttonBlueYellow svg,.btn.buttonBlueYellow svg,.ce_button.buttonBlueYellow svg{margin-left: 16.3px;display: inline-block;vertical-align: middle}.button.buttonYellowBlue svg [stroke],.btn.buttonYellowBlue svg [stroke],.ce_button.buttonYellowBlue svg [stroke],.button.buttonBlueYellow svg [stroke],.btn.buttonBlueYellow svg [stroke],.ce_button.buttonBlueYellow svg [stroke],.button.buttonYellowBlue svg [fill],.btn.buttonYellowBlue svg [fill],.ce_button.buttonYellowBlue svg [fill],.button.buttonBlueYellow svg [fill],.btn.buttonBlueYellow svg [fill],.ce_button.buttonBlueYellow svg [fill]{-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}.button.buttonYellowBlue,.btn.buttonYellowBlue,.ce_button.buttonYellowBlue{background: #dddc03;color: #3e2682}.button.buttonYellowBlue svg :not([stroke="none"]),.btn.buttonYellowBlue svg :not([stroke="none"]),.ce_button.buttonYellowBlue svg :not([stroke="none"]){stroke: #3e2682}.button.buttonYellowBlue svg :not([fill="none"]),.btn.buttonYellowBlue svg :not([fill="none"]),.ce_button.buttonYellowBlue svg :not([fill="none"]){fill: #3e2682}.button.buttonYellowBlue:hover,.btn.buttonYellowBlue:hover,.ce_button.buttonYellowBlue:hover{background: #3e2682;color: #dddc03}.button.buttonYellowBlue:hover svg :not([stroke="none"]),.btn.buttonYellowBlue:hover svg :not([stroke="none"]),.ce_button.buttonYellowBlue:hover svg :not([stroke="none"]){stroke: #dddc03}.button.buttonYellowBlue:hover svg :not([fill="none"]),.btn.buttonYellowBlue:hover svg :not([fill="none"]),.ce_button.buttonYellowBlue:hover svg :not([fill="none"]){fill: #dddc03}.button.buttonBlueYellow,.btn.buttonBlueYellow,.ce_button.buttonBlueYellow{background: #3e2682;color: #dddc03}.button.buttonBlueYellow svg :not([stroke="none"]),.btn.buttonBlueYellow svg :not([stroke="none"]),.ce_button.buttonBlueYellow svg :not([stroke="none"]){stroke: #dddc03}.button.buttonBlueYellow svg :not([fill="none"]),.btn.buttonBlueYellow svg :not([fill="none"]),.ce_button.buttonBlueYellow svg :not([fill="none"]){fill: #dddc03}.button.buttonBlueYellow:hover,.btn.buttonBlueYellow:hover,.ce_button.buttonBlueYellow:hover{background: #dddc03;color: #3e2682}.button.buttonBlueYellow:hover svg :not([stroke="none"]),.btn.buttonBlueYellow:hover svg :not([stroke="none"]),.ce_button.buttonBlueYellow:hover svg :not([stroke="none"]){stroke: #3e2682}.button.buttonBlueYellow:hover svg :not([fill="none"]),.btn.buttonBlueYellow:hover svg :not([fill="none"]),.ce_button.buttonBlueYellow:hover svg :not([fill="none"]){fill: #3e2682}.button.buttonTransparentGrowArrow,.btn.buttonTransparentGrowArrow,.ce_button.buttonTransparentGrowArrow{background: transparent;padding: 0 22px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;line-height: 0}@media screen and (max-width: 1023px){.button.buttonTransparentGrowArrow,.btn.buttonTransparentGrowArrow,.ce_button.buttonTransparentGrowArrow{border: 2px solid #3e2682;border-radius: 250px;padding: 13px 22px 13px 51.17px;white-space: normal;max-width: 100%}}.button.buttonTransparentGrowArrow svg,.btn.buttonTransparentGrowArrow svg,.ce_button.buttonTransparentGrowArrow svg{overflow: visible}.button.buttonTransparentGrowArrow .btnBorder,.btn.buttonTransparentGrowArrow .btnBorder,.ce_button.buttonTransparentGrowArrow .btnBorder{position: absolute;top: 0;left: 0;width: 100%;height: 100%}@media screen and (max-width: 1023px){.button.buttonTransparentGrowArrow .btnBorder,.btn.buttonTransparentGrowArrow .btnBorder,.ce_button.buttonTransparentGrowArrow .btnBorder{display: none}}.button.buttonTransparentGrowArrow .btnArrow,.btn.buttonTransparentGrowArrow .btnArrow,.ce_button.buttonTransparentGrowArrow .btnArrow,.button.buttonTransparentGrowArrow span,.btn.buttonTransparentGrowArrow span,.ce_button.buttonTransparentGrowArrow span{display: inline-block;vertical-align: middle}.button.buttonTransparentGrowArrow .btnArrow,.btn.buttonTransparentGrowArrow .btnArrow,.ce_button.buttonTransparentGrowArrow .btnArrow{margin-right: 8.6px}@media screen and (max-width: 1023px){.button.buttonTransparentGrowArrow .btnArrow,.btn.buttonTransparentGrowArrow .btnArrow,.ce_button.buttonTransparentGrowArrow .btnArrow{position: absolute;margin: 0;top: 50%;left: 22px;-moz-transform: translate(0, -50%);-webkit-transform: translate(0, -50%);-o-transform: translate(0, -50%);-ms-transform: translate(0, -50%);transform: translate(0, -50%)}}.button.buttonTransparentGrowArrow span,.btn.buttonTransparentGrowArrow span,.ce_button.buttonTransparentGrowArrow span{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 18px;line-height: 50px;letter-spacing: 0.1em;color: #3e2682;text-transform: uppercase}@media screen and (min-width: 768px) and (max-width: 1023px){.button.buttonTransparentGrowArrow span,.btn.buttonTransparentGrowArrow span,.ce_button.buttonTransparentGrowArrow span{font-size: 18px}}@media screen and (max-width: 767px){.button.buttonTransparentGrowArrow span,.btn.buttonTransparentGrowArrow span,.ce_button.buttonTransparentGrowArrow span{font-size: 18px}}@media screen and (max-width: 1023px){.button.buttonTransparentGrowArrow span,.btn.buttonTransparentGrowArrow span,.ce_button.buttonTransparentGrowArrow span{line-height: normal}}.buttonYellowBlueContainer button{display: inline-block;position: relative;text-decoration: none;cursor: pointer;border: none;line-height: 50px;white-space: nowrap;border-radius: 25px;padding: 0 22px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out;background: #dddc03;color: #3e2682}.buttonYellowBlueContainer button.buttonYellowBlue,.buttonYellowBlueContainer button.buttonBlueYellow{border-radius: 25px;padding: 0 22px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}.buttonYellowBlueContainer button.buttonYellowBlue span,.buttonYellowBlueContainer button.buttonBlueYellow span{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 18px;line-height: 1.33333333;letter-spacing: 0.02em;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out;color: inherit}@media screen and (min-width: 768px) and (max-width: 1023px){.buttonYellowBlueContainer button.buttonYellowBlue span,.buttonYellowBlueContainer button.buttonBlueYellow span{font-size: 18px}}@media screen and (max-width: 767px){.buttonYellowBlueContainer button.buttonYellowBlue span,.buttonYellowBlueContainer button.buttonBlueYellow span{font-size: 18px}}.buttonYellowBlueContainer button.buttonYellowBlue img,.buttonYellowBlueContainer button.buttonBlueYellow img,.buttonYellowBlueContainer button.buttonYellowBlue svg,.buttonYellowBlueContainer button.buttonBlueYellow svg{margin-left: 16.3px;display: inline-block;vertical-align: middle}.buttonYellowBlueContainer button.buttonYellowBlue svg [stroke],.buttonYellowBlueContainer button.buttonBlueYellow svg [stroke],.buttonYellowBlueContainer button.buttonYellowBlue svg [fill],.buttonYellowBlueContainer button.buttonBlueYellow svg [fill]{-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}.buttonYellowBlueContainer button.buttonYellowBlue{background: #dddc03;color: #3e2682}.buttonYellowBlueContainer button.buttonYellowBlue svg :not([stroke="none"]){stroke: #3e2682}.buttonYellowBlueContainer button.buttonYellowBlue svg :not([fill="none"]){fill: #3e2682}.buttonYellowBlueContainer button.buttonYellowBlue:hover{background: #3e2682;color: #dddc03}.buttonYellowBlueContainer button.buttonYellowBlue:hover svg :not([stroke="none"]){stroke: #dddc03}.buttonYellowBlueContainer button.buttonYellowBlue:hover svg :not([fill="none"]){fill: #dddc03}.buttonYellowBlueContainer button.buttonBlueYellow{background: #3e2682;color: #dddc03}.buttonYellowBlueContainer button.buttonBlueYellow svg :not([stroke="none"]){stroke: #dddc03}.buttonYellowBlueContainer button.buttonBlueYellow svg :not([fill="none"]){fill: #dddc03}.buttonYellowBlueContainer button.buttonBlueYellow:hover{background: #dddc03;color: #3e2682}.buttonYellowBlueContainer button.buttonBlueYellow:hover svg :not([stroke="none"]){stroke: #3e2682}.buttonYellowBlueContainer button.buttonBlueYellow:hover svg :not([fill="none"]){fill: #3e2682}.buttonYellowBlueContainer button.buttonTransparentGrowArrow{background: transparent;padding: 0 22px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;line-height: 0}@media screen and (max-width: 1023px){.buttonYellowBlueContainer button.buttonTransparentGrowArrow{border: 2px solid #3e2682;border-radius: 250px;padding: 13px 22px 13px 51.17px;white-space: normal;max-width: 100%}}.buttonYellowBlueContainer button.buttonTransparentGrowArrow svg{overflow: visible}.buttonYellowBlueContainer button.buttonTransparentGrowArrow .btnBorder{position: absolute;top: 0;left: 0;width: 100%;height: 100%}@media screen and (max-width: 1023px){.buttonYellowBlueContainer button.buttonTransparentGrowArrow .btnBorder{display: none}}.buttonYellowBlueContainer button.buttonTransparentGrowArrow .btnArrow,.buttonYellowBlueContainer button.buttonTransparentGrowArrow span{display: inline-block;vertical-align: middle}.buttonYellowBlueContainer button.buttonTransparentGrowArrow .btnArrow{margin-right: 8.6px}@media screen and (max-width: 1023px){.buttonYellowBlueContainer button.buttonTransparentGrowArrow .btnArrow{position: absolute;margin: 0;top: 50%;left: 22px;-moz-transform: translate(0, -50%);-webkit-transform: translate(0, -50%);-o-transform: translate(0, -50%);-ms-transform: translate(0, -50%);transform: translate(0, -50%)}}.buttonYellowBlueContainer button.buttonTransparentGrowArrow span{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 18px;line-height: 50px;letter-spacing: 0.1em;color: #3e2682;text-transform: uppercase}@media screen and (min-width: 768px) and (max-width: 1023px){.buttonYellowBlueContainer button.buttonTransparentGrowArrow span{font-size: 18px}}@media screen and (max-width: 767px){.buttonYellowBlueContainer button.buttonTransparentGrowArrow span{font-size: 18px}}@media screen and (max-width: 1023px){.buttonYellowBlueContainer button.buttonTransparentGrowArrow span{line-height: normal}}.buttonYellowBlueContainer button span{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 18px;line-height: 1.33333333;letter-spacing: 0.02em;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out;color: inherit}@media screen and (min-width: 768px) and (max-width: 1023px){.buttonYellowBlueContainer button span{font-size: 18px}}@media screen and (max-width: 767px){.buttonYellowBlueContainer button span{font-size: 18px}}.buttonYellowBlueContainer button img,.buttonYellowBlueContainer button svg{margin-left: 16.3px;display: inline-block;vertical-align: middle}.buttonYellowBlueContainer button svg [stroke],.buttonYellowBlueContainer button svg [fill]{-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}.buttonYellowBlueContainer button svg :not([stroke="none"]){stroke: #3e2682}.buttonYellowBlueContainer button svg :not([fill="none"]){fill: #3e2682}.buttonYellowBlueContainer button:hover{background: #3e2682;color: #dddc03}.buttonYellowBlueContainer button:hover svg :not([stroke="none"]){stroke: #dddc03}.buttonYellowBlueContainer button:hover svg :not([fill="none"]){fill: #dddc03}.buttonBlueYellowContainer button{display: inline-block;position: relative;text-decoration: none;cursor: pointer;border: none;line-height: 50px;white-space: nowrap;border-radius: 25px;padding: 0 22px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out;background: #3e2682;color: #dddc03}.buttonBlueYellowContainer button.buttonYellowBlue,.buttonBlueYellowContainer button.buttonBlueYellow{border-radius: 25px;padding: 0 22px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}.buttonBlueYellowContainer button.buttonYellowBlue span,.buttonBlueYellowContainer button.buttonBlueYellow span{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 18px;line-height: 1.33333333;letter-spacing: 0.02em;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out;color: inherit}@media screen and (min-width: 768px) and (max-width: 1023px){.buttonBlueYellowContainer button.buttonYellowBlue span,.buttonBlueYellowContainer button.buttonBlueYellow span{font-size: 18px}}@media screen and (max-width: 767px){.buttonBlueYellowContainer button.buttonYellowBlue span,.buttonBlueYellowContainer button.buttonBlueYellow span{font-size: 18px}}.buttonBlueYellowContainer button.buttonYellowBlue img,.buttonBlueYellowContainer button.buttonBlueYellow img,.buttonBlueYellowContainer button.buttonYellowBlue svg,.buttonBlueYellowContainer button.buttonBlueYellow svg{margin-left: 16.3px;display: inline-block;vertical-align: middle}.buttonBlueYellowContainer button.buttonYellowBlue svg [stroke],.buttonBlueYellowContainer button.buttonBlueYellow svg [stroke],.buttonBlueYellowContainer button.buttonYellowBlue svg [fill],.buttonBlueYellowContainer button.buttonBlueYellow svg [fill]{-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}.buttonBlueYellowContainer button.buttonYellowBlue{background: #dddc03;color: #3e2682}.buttonBlueYellowContainer button.buttonYellowBlue svg :not([stroke="none"]){stroke: #3e2682}.buttonBlueYellowContainer button.buttonYellowBlue svg :not([fill="none"]){fill: #3e2682}.buttonBlueYellowContainer button.buttonYellowBlue:hover{background: #3e2682;color: #dddc03}.buttonBlueYellowContainer button.buttonYellowBlue:hover svg :not([stroke="none"]){stroke: #dddc03}.buttonBlueYellowContainer button.buttonYellowBlue:hover svg :not([fill="none"]){fill: #dddc03}.buttonBlueYellowContainer button.buttonBlueYellow{background: #3e2682;color: #dddc03}.buttonBlueYellowContainer button.buttonBlueYellow svg :not([stroke="none"]){stroke: #dddc03}.buttonBlueYellowContainer button.buttonBlueYellow svg :not([fill="none"]){fill: #dddc03}.buttonBlueYellowContainer button.buttonBlueYellow:hover{background: #dddc03;color: #3e2682}.buttonBlueYellowContainer button.buttonBlueYellow:hover svg :not([stroke="none"]){stroke: #3e2682}.buttonBlueYellowContainer button.buttonBlueYellow:hover svg :not([fill="none"]){fill: #3e2682}.buttonBlueYellowContainer button.buttonTransparentGrowArrow{background: transparent;padding: 0 22px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;line-height: 0}@media screen and (max-width: 1023px){.buttonBlueYellowContainer button.buttonTransparentGrowArrow{border: 2px solid #3e2682;border-radius: 250px;padding: 13px 22px 13px 51.17px;white-space: normal;max-width: 100%}}.buttonBlueYellowContainer button.buttonTransparentGrowArrow svg{overflow: visible}.buttonBlueYellowContainer button.buttonTransparentGrowArrow .btnBorder{position: absolute;top: 0;left: 0;width: 100%;height: 100%}@media screen and (max-width: 1023px){.buttonBlueYellowContainer button.buttonTransparentGrowArrow .btnBorder{display: none}}.buttonBlueYellowContainer button.buttonTransparentGrowArrow .btnArrow,.buttonBlueYellowContainer button.buttonTransparentGrowArrow span{display: inline-block;vertical-align: middle}.buttonBlueYellowContainer button.buttonTransparentGrowArrow .btnArrow{margin-right: 8.6px}@media screen and (max-width: 1023px){.buttonBlueYellowContainer button.buttonTransparentGrowArrow .btnArrow{position: absolute;margin: 0;top: 50%;left: 22px;-moz-transform: translate(0, -50%);-webkit-transform: translate(0, -50%);-o-transform: translate(0, -50%);-ms-transform: translate(0, -50%);transform: translate(0, -50%)}}.buttonBlueYellowContainer button.buttonTransparentGrowArrow span{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 18px;line-height: 50px;letter-spacing: 0.1em;color: #3e2682;text-transform: uppercase}@media screen and (min-width: 768px) and (max-width: 1023px){.buttonBlueYellowContainer button.buttonTransparentGrowArrow span{font-size: 18px}}@media screen and (max-width: 767px){.buttonBlueYellowContainer button.buttonTransparentGrowArrow span{font-size: 18px}}@media screen and (max-width: 1023px){.buttonBlueYellowContainer button.buttonTransparentGrowArrow span{line-height: normal}}.buttonBlueYellowContainer button span{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 18px;line-height: 1.33333333;letter-spacing: 0.02em;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out;color: inherit}@media screen and (min-width: 768px) and (max-width: 1023px){.buttonBlueYellowContainer button span{font-size: 18px}}@media screen and (max-width: 767px){.buttonBlueYellowContainer button span{font-size: 18px}}.buttonBlueYellowContainer button img,.buttonBlueYellowContainer button svg{margin-left: 16.3px;display: inline-block;vertical-align: middle}.buttonBlueYellowContainer button svg [stroke],.buttonBlueYellowContainer button svg [fill]{-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}.buttonBlueYellowContainer button svg :not([stroke="none"]){stroke: #dddc03}.buttonBlueYellowContainer button svg :not([fill="none"]){fill: #dddc03}.buttonBlueYellowContainer button:hover{background: #dddc03;color: #3e2682}.buttonBlueYellowContainer button:hover svg :not([stroke="none"]){stroke: #3e2682}.buttonBlueYellowContainer button:hover svg :not([fill="none"]){fill: #3e2682}.mod_realEstateGoogleMap{height: 500px}.mod_realEstateGoogleMap > .google-map,.mod_realEstateGoogleMap > .google-map > div{height: 100%}.ce_filter{display: block;width: 100%;max-width: 1094px;margin: 0 auto;padding: 17px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box}@media screen and (max-width: 1023px){.ce_filter{padding: 0 0 17px 0}}.ce_filter form{display: block;box-shadow: 0 6px 12px rgba(0,0,0,0.16);padding: 20px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;background-color: #fff}.ce_filter form .formbody{display: flex;column-gap: 15px;row-gap: 17px}@media screen and (max-width: 1023px){.ce_filter form .formbody{flex-wrap: wrap}}.ce_filter form .formbody > .widget{margin-bottom: 0}@media screen and (max-width: 599px){.ce_filter form .formbody > .widget{width: 100%}.ce_filter form .formbody > .widget.widget-submit{text-align: center}}.ce_filter form .formbody > .widget.widget-type-separated,.ce_filter form .formbody > .widget.widget-toggle{display: flex;column-gap: 15px;row-gap: 17px;margin-bottom: 0}@media screen and (max-width: 1023px){.ce_filter form .formbody > .widget.widget-type-separated,.ce_filter form .formbody > .widget.widget-toggle{flex-wrap: wrap}}.ce_filter form .formbody > .widget.widget-type-separated > .widget,.ce_filter form .formbody > .widget.widget-toggle > .widget{margin-bottom: 0}@media screen and (max-width: 599px){.ce_filter form .formbody > .widget.widget-type-separated > .widget,.ce_filter form .formbody > .widget.widget-toggle > .widget{width: 100%}}.ce_filter.filter-extended form .formbody{flex-wrap: wrap}.ce_filter.filter-extended form .formbody > .widget{margin-bottom: 0}@media screen and (max-width: 599px){.ce_filter.filter-extended form .formbody > .widget{width: 100%}.ce_filter.filter-extended form .formbody > .widget.widget-reset{text-align: right}.ce_filter.filter-extended form .formbody > .widget.widget-reset button{display: inline-block}}.ce_filter.filter-extended form .formbody > .widget.widget-type-separated,.ce_filter.filter-extended form .formbody > .widget.widget-toggle{flex-wrap: wrap;margin-bottom: 0}.ce_filter.filter-extended form .formbody > .widget.widget-type-separated > .widget,.ce_filter.filter-extended form .formbody > .widget.widget-toggle > .widget{margin-bottom: 0}@media screen and (max-width: 599px){.ce_filter.filter-extended form .formbody > .widget.widget-type-separated > .widget,.ce_filter.filter-extended form .formbody > .widget.widget-toggle > .widget{width: 100%}}@media screen and (max-width: 599px){.ce_filter.filter-extended form .formbody > .widget.widget-type-separated > .real-estate-filter,.ce_filter.filter-extended form .formbody > .widget.widget-toggle > .real-estate-filter{width: 100%}}.ce_filter.filter-extended form .formbody > .widget.widget-toggle .real-estate-filter.period,.ce_filter.filter-extended form .formbody > .widget.widget-toggle .real-estate-filter.room{display: none}.intro_filter_wrap .inside{position: relative}.intro_filter_wrap .inside .rsce_intro{position: relative;z-index: 1;aspect-ratio: 1371/603}.intro_filter_wrap .inside .mod_realEstateGoogleMap{width: 100%;height: auto;aspect-ratio: 1371/603}@media screen and (max-width: 1023px){.intro_filter_wrap .inside .mod_realEstateGoogleMap{min-height: 500px}}.intro_filter_wrap .inside .mod_realEstateGoogleMap .content,.intro_filter_wrap .inside .mod_realEstateGoogleMap .google-map,.intro_filter_wrap .inside .mod_realEstateGoogleMap .google-map > div{display: block;width: 100%;height: 100%}.intro_filter_wrap .inside .ce_filter{position: relative;z-index: 2}@media screen and (min-width: 1024px){.intro_filter_wrap .inside .ce_filter.filter-extended{margin-top: -99.5px}.intro_filter_wrap .inside .ce_filter.filter-simple{margin-top: -64px}}.real_estate_watchlist_button{display: block;width: 37px;height: auto;aspect-ratio: 1/1}.real_estate_watchlist_button form,.real_estate_watchlist_button .formbody{display: inline-block;width: 100%;height: 100%}.real_estate_watchlist_button .widget-submit{display: inline-block;width: 100%;height: 100%}.real_estate_watchlist_button .widget-submit .submit{position: relative;background-color: #3e2682;padding: 0;margin: 0;width: 100%;height: 100%;border-radius: 0;border: none}.real_estate_watchlist_button .widget-submit .submit span{display: none}.real_estate_watchlist_button .widget-submit .submit svg{position: absolute;top: 50%;left: 50%;-moz-transform: translate(-50%, -50%);-webkit-transform: translate(-50%, -50%);-o-transform: translate(-50%, -50%);-ms-transform: translate(-50%, -50%);transform: translate(-50%, -50%);pointer-events: none}.real_estate_watchlist_button .widget-submit .submit svg path{fill: transparent;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}.real_estate_watchlist_button .widget-submit .submit:hover svg path,.real_estate_watchlist_button .widget-submit .submit.active svg path{fill: #dddc03}.real_estate_item_default .inner a{display: inline-block;color: inherit;text-decoration: none;margin: 0;padding: 0}.real_estate_item_default .inner .main-image{position: relative;display: block;width: 100%;height: auto;aspect-ratio: 437/327}.real_estate_item_default .inner .main-image a,.real_estate_item_default .inner .main-image figure,.real_estate_item_default .inner .main-image img{display: block;width: 100%;height: 100%}.real_estate_item_default .inner .main-image .image_container{position: relative;overflow: hidden}.real_estate_item_default .inner .main-image .image_container:before{content: "";display: block;width: 100%;height: 100%;position: absolute;top: 0;left: 0;z-index: 2;background-color: rgba(62,38,130,0.35);opacity: 1;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}.real_estate_item_default .inner .main-image .image_container img{-moz-object-fit: cover;-webkit-object-fit: cover;-o-object-fit: cover;-ms-object-fit: cover;object-fit: cover;-moz-object-position: center center;-webkit-object-position: center center;-o-object-position: center center;-ms-object-position: center center;object-position: center center;font-family: "object-fit:cover; object-position:center center;";-moz-transform: translate(-50%, -50%);-webkit-transform: translate(-50%, -50%);-o-transform: translate(-50%, -50%);-ms-transform: translate(-50%, -50%);transform: translate(-50%, -50%);-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out;position: absolute;top: 50%;left: 50%;z-index: 1}.real_estate_item_default .inner .main-image .vermarktungsart{position: absolute;top: 0;left: 0;padding: 16px 16px 0 16px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;z-index: 4;font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 15px;line-height: 1.86666667;pointer-events: none;display: flex;flex-wrap: wrap;column-gap: 10px;row-gap: 10px}.real_estate_item_default .inner .main-image .vermarktungsart .vermarktung{background-color: #dddc03;padding: 0 18px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box}.real_estate_item_default .inner .main-image .actions-wrap{display: grid;grid-template-columns: auto auto;justify-content: space-between;align-items: center;column-gap: 20px;row-gap: 0;width: 100%;position: absolute;bottom: 0;left: 0;padding: 0 16px 9px 16px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;z-index: 5}.real_estate_item_default .inner .main-image .actions-wrap .main-price{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 22px;line-height: 1.86363636;color: #fff;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}@media screen and (min-width: 768px) and (max-width: 1023px){.real_estate_item_default .inner .main-image .actions-wrap .main-price{font-size: 19.8px}}@media screen and (max-width: 767px){.real_estate_item_default .inner .main-image .actions-wrap .main-price{font-size: 18px}}.real_estate_item_default .inner:hover .main-image .image_container img{width: 105%;height: 105%}.real_estate_item_default .inner:hover .main-image .image_container:before{opacity: 0}.real_estate_item_default .inner .type{font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 15px;line-height: 1.86666667;color: #3e2682;margin: 16px 0 4px 0;padding: 0}.real_estate_item_default .inner .title{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 18px;line-height: 1.27777778;margin: 4px 0 3px 0}.real_estate_item_default .inner .address{font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 15px;line-height: 1.86666667;margin: 0 0 11.7px 0}.real_estate_item_default .inner .details{display: flex;flex-wrap: wrap;margin: 0;column-gap: 13.7px;row-gap: 13.7px}.real_estate_item_default .inner .details li{position: relative;font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 15px;line-height: 1.86666667;color: #707070;padding-left: 23.3px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box}.real_estate_item_default .inner .details li:before{content: "";position: absolute;top: 50%;left: 0;-moz-transform: translate(0, -50%);-webkit-transform: translate(0, -50%);-o-transform: translate(0, -50%);-ms-transform: translate(0, -50%);transform: translate(0, -50%);display: block;width: 16px;height: 16px;background-position: center center;background-repeat: no-repeat}.real_estate_item_default .inner .details li.wohnflaeche:before{background-image: url("/files/theme/i/icons/wohnflaeche.svg")}.real_estate_item_default .inner .details li.anzahlZimmer:before{background-image: url("/files/theme/i/icons/zimmer.svg")}.real_estate_item_default .inner .details li.aussenflaeche:before{width: 20px;height: 20px;background-size: contain;background-image: url("/files/theme/i/icons/aussenflaechen-grau.svg")}.real_estate_item_default .inner .main-price{font-size: 30px;line-height: 1.86666667}.real_estate_item_default.real_estate_item_reference .inner .address{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 18px;line-height: 1.27777778;margin: 15px 0 4px 0}.real_estate_item_default.real_estate_item_reference .inner .ref_details{font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 15px;line-height: 1.86666667;color: #707070}.mod_realEstateList .headline{text-align: center;margin: 0;margin-bottom: 74.2px;font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 50px;line-height: 1.1;color: #3e2682}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateList .headline{margin-bottom: 66.78px}}@media screen and (max-width: 767px){.mod_realEstateList .headline{margin-bottom: 59.36px}}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateList .headline{font-size: 45px}}@media screen and (max-width: 767px){.mod_realEstateList .headline{font-size: 40px}}.mod_realEstateList .content{display: grid;grid-template-columns: repeat(3, minmax(0, 1fr));justify-content: flex-start;align-items: flex-start;column-gap: 30px;row-gap: 43px}@media screen and (min-width: 600px) and (max-width: 1023px){.mod_realEstateList .content{grid-template-columns: repeat(2, minmax(0, 1fr))}}@media screen and (max-width: 599px){.mod_realEstateList .content{grid-template-columns: auto}}.mod_realEstateList .pagination{grid-column: 1/3;text-align: center;margin-top: 93px}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateList .pagination{margin-top: 83.7px}}@media screen and (max-width: 767px){.mod_realEstateList .pagination{margin-top: 74.40000000000001px}}.mod_realEstateList .pagination p{display: none}.mod_realEstateList .pagination ul{display: inline-grid;grid-template-columns: auto;justify-content: center;align-items: center;column-gap: 10px;row-gap: 0;grid-auto-flow: column}.mod_realEstateList.top-immobilien .content{display: grid;grid-template-columns: repeat(4, minmax(0, 1fr));justify-content: flex-start;align-items: flex-start;column-gap: 30px;row-gap: 43px}@media screen and (min-width: 600px) and (max-width: 1023px){.mod_realEstateList.top-immobilien .content{grid-template-columns: repeat(2, minmax(0, 1fr))}}@media screen and (max-width: 599px){.mod_realEstateList.top-immobilien .content{grid-template-columns: auto}}.mod_realEstateResultList .content{display: grid;grid-template-columns: repeat(2, auto);justify-content: space-between;align-items: center;column-gap: 0;row-gap: 0}@media screen and (max-width: 599px){.mod_realEstateResultList .content{grid-template-columns: auto}}.mod_realEstateResultList .content .result-count{font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 18px;line-height: 1.55555556;color: #707070}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateResultList .content .result-count{font-size: 18px}}@media screen and (max-width: 767px){.mod_realEstateResultList .content .result-count{font-size: 18px}}@media screen and (max-width: 599px){.mod_realEstateResultList .content .result-count{width: 100%}}.mod_realEstateResultList .content > .empty{grid-column: span 2}@media screen and (max-width: 599px){.mod_realEstateResultList .content > .empty{grid-column: auto}}.mod_realEstateResultList .content .result-sorting{text-align: right;width: auto;max-width: 100%;margin: 0 0 0 auto}@media screen and (max-width: 599px){.mod_realEstateResultList .content .result-sorting{width: 100%;text-align: left}}.mod_realEstateResultList .content .result-sorting .widget.widget-select{width: 100%}.mod_realEstateResultList .content .result-sorting .widget.widget-select select{border: none;padding-top: 0;padding-bottom: 0;width: 100%;height: auto;font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 18px;line-height: 1.55555556;height: 28px}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateResultList .content .result-sorting .widget.widget-select select{font-size: 18px}}@media screen and (max-width: 767px){.mod_realEstateResultList .content .result-sorting .widget.widget-select select{font-size: 18px}}@media screen and (max-width: 599px){.mod_realEstateResultList .content .result-sorting .widget.widget-select select{padding-left: 0}}.mod_realEstateResultList .content .result-list{grid-column: 1/3;margin-top: 40px}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateResultList .content .result-list{margin-top: 36px}}@media screen and (max-width: 767px){.mod_realEstateResultList .content .result-list{margin-top: 32px}}@media screen and (max-width: 599px){.mod_realEstateResultList .content .result-list{grid-column: auto}}.mod_realEstateResultList .content .result-list .result-list-inner{display: grid;grid-template-columns: repeat(3, minmax(0, 1fr));justify-content: flex-start;align-items: flex-start;column-gap: 30px;row-gap: 43px}@media screen and (min-width: 600px) and (max-width: 1023px){.mod_realEstateResultList .content .result-list .result-list-inner{grid-template-columns: repeat(2, minmax(0, 1fr))}}@media screen and (max-width: 599px){.mod_realEstateResultList .content .result-list .result-list-inner{grid-template-columns: auto}}.mod_realEstateResultList .content .pagination{grid-column: 1/3;text-align: center;margin-top: 93px}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateResultList .content .pagination{margin-top: 83.7px}}@media screen and (max-width: 767px){.mod_realEstateResultList .content .pagination{margin-top: 74.40000000000001px}}@media screen and (max-width: 599px){.mod_realEstateResultList .content .pagination{grid-column: auto}}.mod_realEstateResultList .content .pagination p{display: none}.mod_realEstateResultList .content .pagination ul{display: inline-grid;grid-template-columns: auto;justify-content: center;align-items: center;column-gap: 10px;row-gap: 0;grid-auto-flow: column}@media screen and (max-width: 599px){.mod_realEstateResultList .content .pagination ul{display: flex;grid-auto-flow: auto;flex-wrap: wrap;row-gap: 10px;column-gap: 4px}}.mod_realEstateResultList .content .pagination ul li a,.mod_realEstateResultList .content .pagination ul li strong{display: block;position: relative;width: 50px;height: auto;aspect-ratio: 1/1;border-radius: 100%;border: 1px solid #b4b4b4;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;line-height: 50px;color: #B4B4B4;text-decoration: none;font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 24px;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateResultList .content .pagination ul li a,.mod_realEstateResultList .content .pagination ul li strong{font-size: 21.6px}}@media screen and (max-width: 767px){.mod_realEstateResultList .content .pagination ul li a,.mod_realEstateResultList .content .pagination ul li strong{font-size: 19.2px}}@media screen and (max-width: 599px){.mod_realEstateResultList .content .pagination ul li a,.mod_realEstateResultList .content .pagination ul li strong{width: 30px;line-height: 30px}}.mod_realEstateResultList .content .pagination ul li a svg [fill]{-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}.mod_realEstateResultList .content .pagination ul li a:hover{background-color: #3e2682;border-color: #3e2682;color: #fff}.mod_realEstateResultList .content .pagination ul li a:hover svg [fill]{fill: #fff}.mod_realEstateResultList .content .pagination ul li strong{color: #3e2682;border-color: #3e2682}.mod_realEstateResultList .content .pagination ul li.next a svg,.mod_realEstateResultList .content .pagination ul li.last a svg,.mod_realEstateResultList .content .pagination ul li.next strong svg,.mod_realEstateResultList .content .pagination ul li.last strong svg{position: absolute;top: 50%;left: 50%;-moz-transform: translate(-50%, -50%);-webkit-transform: translate(-50%, -50%);-o-transform: translate(-50%, -50%);-ms-transform: translate(-50%, -50%);transform: translate(-50%, -50%)}.expose_mod_similar .headline{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 21px;line-height: 1.33333333;margin: 0 0 30px 0;color: #3e2682}@media screen and (min-width: 768px) and (max-width: 1023px){.expose_mod_similar .headline{font-size: 18.9px}}@media screen and (max-width: 767px){.expose_mod_similar .headline{font-size: 18px}}.expose_mod_similar .content .list{display: grid;grid-template-columns: repeat(3, minmax(0, 1fr));justify-content: flex-start;align-items: flex-start;column-gap: 30px;row-gap: 43px}@media screen and (min-width: 600px) and (max-width: 1023px){.expose_mod_similar .content .list{grid-template-columns: repeat(2, minmax(0, 1fr))}}@media screen and (max-width: 599px){.expose_mod_similar .content .list{grid-template-columns: auto}}.realestate_button{display: inline-block;text-decoration: none;height: 50px;line-height: 50px;background-color: #dddc03;border-radius: 25px;border: none;cursor: pointer;font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 18px;letter-spacing: 0.02em;text-align: center;padding: 0 40px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}.realestate_button:hover{background-color: #3e2682;color: #fff}.mod_realEstateExpose .mobile_accordions{display: none}@media screen and (max-width: 599px){.mod_realEstateExpose .desktop_element{display: none}.mod_realEstateExpose .mobile_accordions{display: block}}.mod_realEstateExpose .content .object-expose-content-top .expose_mod_gallery .content{max-width: 100%}.mod_realEstateExpose .content .object-expose-content-top .expose_mod_gallery .content .gallery-inner{white-space: nowrap}.mod_realEstateExpose .content .object-expose-content-top .expose_mod_gallery .content .gallery-inner.owl-singleitem .owl-stage,.mod_realEstateExpose .content .object-expose-content-top .expose_mod_gallery .content .gallery-inner.owl-singleitem .owl-item{width: 100% !important}.mod_realEstateExpose .content .object-expose-content-top .expose_mod_gallery .content .gallery-inner .gallery-item{display: inline-block;vertical-align: top;width: 100%;height: auto;aspect-ratio: 1370/782}@media screen and (max-width: 600px) and (orientation: portrait){.mod_realEstateExpose .content .object-expose-content-top .expose_mod_gallery .content .gallery-inner .gallery-item{aspect-ratio: auto;height: 50vh}}.mod_realEstateExpose .content .object-expose-content-top .expose_mod_gallery .content .gallery-inner .gallery-item figure,.mod_realEstateExpose .content .object-expose-content-top .expose_mod_gallery .content .gallery-inner .gallery-item img{display: block;width: 100%;height: 100%}.mod_realEstateExpose .content .object-expose-content-top .expose_mod_gallery .content .gallery-inner .gallery-item img{-moz-object-fit: cover;-webkit-object-fit: cover;-o-object-fit: cover;-ms-object-fit: cover;object-fit: cover;-moz-object-position: center center;-webkit-object-position: center center;-o-object-position: center center;-ms-object-position: center center;object-position: center center;font-family: "object-fit:cover; object-position:center center;"}.mod_realEstateExpose .content .object-expose-content{font-size: 0;line-height: 0}.mod_realEstateExpose .content .object-expose-content > *{font-size: 18px;line-height: normal}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content > *{font-size: 18px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content > *{font-size: 18px}}.mod_realEstateExpose .content .object-expose-content .object-expose-main{width: 100%;margin-bottom: 40px}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-main{margin-bottom: 36px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-main{margin-bottom: 32px}}.mod_realEstateExpose .content .object-expose-content .object-expose-main #address-and-objnr{display: grid;grid-template-columns: repeat(2, auto);justify-content: space-between;align-items: center;column-gap: 20px;row-gap: 0;margin-top: 44px}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #address-and-objnr{margin-top: 39.6px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #address-and-objnr{margin-top: 35.2px}}.mod_realEstateExpose .content .object-expose-content .object-expose-main #address-and-objnr address{font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 18px;line-height: 1.55555556;font-style: normal}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #address-and-objnr address{font-size: 18px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #address-and-objnr address{font-size: 18px}}.mod_realEstateExpose .content .object-expose-content .object-expose-main #address-and-objnr .objektnrExtern{background-color: #f4f4f4;padding: 8px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;color: #B5B5B5;font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 15px;line-height: 1.86666667}@media screen and (max-width: 599px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #address-and-objnr{grid-template-columns: auto;row-gap: 20px;margin-bottom: 20px}.mod_realEstateExpose .content .object-expose-content .object-expose-main #address-and-objnr .expose_mod_fieldList{order: 1;text-align: left}.mod_realEstateExpose .content .object-expose-content .object-expose-main #address-and-objnr .expose_mod_fieldList .objektnrExtern{display: inline-block}.mod_realEstateExpose .content .object-expose-content .object-expose-main #address-and-objnr .expose_mod_address{order: 2}}.mod_realEstateExpose .content .object-expose-content .object-expose-main .expose_mod_title h1{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 33px;margin: 0;margin-bottom: 29px;padding-right: 200px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-main .expose_mod_title h1{font-size: 29.7px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-main .expose_mod_title h1{font-size: 26.4px}}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-main .expose_mod_title h1{margin-bottom: 26.1px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-main .expose_mod_title h1{margin-bottom: 23.2px}}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-main .expose_mod_title h1{padding-right: 180px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-main .expose_mod_title h1{padding-right: 160px}}@media screen and (max-width: 599px){.mod_realEstateExpose .content .object-expose-content .object-expose-main .expose_mod_title h1{padding-right: 0;font-size: 26px;hyphens: auto}}.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details{display: grid;grid-template-columns: repeat(2, auto);justify-content: space-between;align-items: center;column-gap: 20px;row-gap: 0}@media screen and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details{display: grid;grid-template-columns: 100%;justify-content: flex-start;align-items: flex-start;column-gap: 20px;row-gap: 20px}}@media screen and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_mainPrice{order: 2;margin-top: 10px;text-align: center}}@media screen and (min-width: 600px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_mainPrice{text-align: left}}.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_mainPrice .value{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 31px;line-height: .90322581;color: #3e2682}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_mainPrice .value{font-size: 27.9px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_mainPrice .value{font-size: 24.8px}}@media screen and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_mainPrice .value{font-size: 24px;line-height: normal}}.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_mainPrice .label{font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 18px;line-height: 1.55555556;color: #707070;margin: 8px 0 0 0}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_mainPrice .label{font-size: 18px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_mainPrice .label{font-size: 18px}}@media screen and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_mainPrice .label{line-height: normal;margin: 0}}@media screen and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_details{order: 1;width: 100%}}.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_details .details{display: flex;flex-wrap: wrap;margin: 0;column-gap: 78px;row-gap: 13.7px;justify-content: flex-end}@media screen and (max-width: 599px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_details .details{column-gap: 0;row-gap: 20px;width: 100%;flex-wrap: nowrap}}@media screen and (min-width: 600px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_details .details{justify-content: flex-start;column-gap: 30px;row-gap: 40px}}.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_details .details li{position: relative;font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 15px;line-height: 1.86666667;color: #707070;padding-left: 73px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box}@media screen and (max-width: 600px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_details .details li{width: 100%;flex: 50%;padding-left: 0;line-height: normal;text-align: center;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box}.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_details .details li:nth-child(odd){padding-right: 0}.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_details .details li:nth-child(even){padding-left: 0}}@media screen and (min-width: 600px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_details .details li{line-height: normal}}.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_details .details li strong{display: block;font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 18px;color: #3e2682}.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_details .details li figure{display: block;width: 62px;height: auto;aspect-ratio: 1/1;position: absolute;top: 50%;left: 0;-moz-transform: translate(0, -50%);-webkit-transform: translate(0, -50%);-o-transform: translate(0, -50%);-ms-transform: translate(0, -50%);transform: translate(0, -50%);border: 1px solid #e3e3e3;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box}@media screen and (max-width: 599px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_details .details li figure{position: relative;top: auto;left: auto;-moz-transform: translate(0, 0);-webkit-transform: translate(0, 0);-o-transform: translate(0, 0);-ms-transform: translate(0, 0);transform: translate(0, 0);width: 40px;margin-bottom: 10px;margin-left: auto;margin-right: auto}}.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_details .details li figure svg,.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_details .details li figure img{position: absolute;top: 50%;left: 50%;-moz-transform: translate(-50%, -50%);-webkit-transform: translate(-50%, -50%);-o-transform: translate(-50%, -50%);-ms-transform: translate(-50%, -50%);transform: translate(-50%, -50%);width: 33px;height: auto}@media screen and (max-width: 599px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_details .details li figure svg,.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_details .details li figure img{width: 50%}}.mod_realEstateExpose .content .object-expose-content .object-expose-main #price-and-details .expose_mod_details .details li figure svg [fill]{fill: #3e2682}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share{display: grid;grid-template-columns: repeat(2, auto);justify-content: space-between;align-items: center;column-gap: 20px;row-gap: 0;margin-top: 82px}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share{margin-top: 73.8px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share{margin-top: 65.59999999999999px}}@media screen and (max-width: 599px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share{grid-template-columns: 100%;margin-top: 30px}}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share .expose_mod_details .details{display: flex;flex-wrap: wrap;column-gap: 16px;row-gap: 16px}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share .expose_mod_details .details .field{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 15px;line-height: 35px;padding: 0 12px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;background-color: #f4f4f4;color: #3e2682}@media screen and (max-width: 599px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share .expose_mod_details .details{display: grid;grid-template-columns: repeat(2, minmax(0, 1fr));justify-content: center;align-items: stretch;column-gap: 16px;row-gap: 16px}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share .expose_mod_details .details .field{hyphens: auto;line-height: normal;padding: 10px 12px}}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share{display: flex;align-items: center;flex-wrap: wrap;column-gap: 34px}@media screen and (max-width: 599px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share{margin-top: 20px;row-gap: 10px;display: grid;grid-template-columns: repeat(3, minmax(0, 1fr));justify-content: center;align-items: center;column-gap: 34px;row-gap: 0;text-align: center}}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share .expose_mod_print button,.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share .expose_mod_print a{position: relative;text-decoration: none;display: block;background: transparent;color: #3e2682;cursor: pointer;font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 15px;height: 30px;margin: 0;padding: 0 0 0 27.3px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;line-height: 30px;text-align: center;border: none}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share .expose_mod_print button:before,.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share .expose_mod_print a:before{content: "";display: block;width: 20px;height: 20px;background-image: url("/files/theme/i/icons/printer.svg");background-repeat: no-repeat;background-position: center center;background-size: contain;position: absolute;top: 50%;left: 0;-moz-transform: translate(0, -50%);-webkit-transform: translate(0, -50%);-o-transform: translate(0, -50%);-ms-transform: translate(0, -50%);transform: translate(0, -50%)}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share .expose_mod_watchlist .real_estate_watchlist_button{width: auto;height: auto;aspect-ratio: auto}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share .expose_mod_watchlist .real_estate_watchlist_button .widget-submit .submit{background-color: transparent;width: auto;height: 30px;font-size: 0;line-height: 0;margin: 0;padding: 0 0 0 27.3px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;text-align: left;border: none}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share .expose_mod_watchlist .real_estate_watchlist_button .widget-submit .submit svg{width: 20px;height: 20px;position: absolute;top: 50%;left: 0;-moz-transform: translate(0, -50%);-webkit-transform: translate(0, -50%);-o-transform: translate(0, -50%);-ms-transform: translate(0, -50%);transform: translate(0, -50%)}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share .expose_mod_watchlist .real_estate_watchlist_button .widget-submit .submit svg [stroke]{stroke: #3e2682}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share .expose_mod_watchlist .real_estate_watchlist_button .widget-submit .submit span{display: inline;font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 15px;line-height: 30px;color: #3e2682;pointer-events: none}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share .expose_mod_watchlist .real_estate_watchlist_button .widget-submit .submit.active svg [fill],.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share .expose_mod_watchlist .real_estate_watchlist_button .widget-submit .submit:hover svg [fill]{fill: #3e2682}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share .expose_mod_share{position: relative}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share .expose_mod_share button{position: relative;background: transparent;color: #3e2682;cursor: pointer;font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 15px;height: 30px;margin: 0;padding: 0 0 0 27.3px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;text-align: center;border: none}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share .expose_mod_share button:before{content: "";display: block;width: 20px;height: 20px;background-image: url("/files/theme/i/icons/share.svg");background-repeat: no-repeat;background-position: center center;background-size: contain;position: absolute;top: 50%;left: 0;-moz-transform: translate(0, -50%);-webkit-transform: translate(0, -50%);-o-transform: translate(0, -50%);-ms-transform: translate(0, -50%);transform: translate(0, -50%)}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share .expose_mod_share ul{display: block;position: absolute;top: 100%;left: 50%;right: auto;-moz-transform: translate(-50%, 0);-webkit-transform: translate(-50%, 0);-o-transform: translate(-50%, 0);-ms-transform: translate(-50%, 0);transform: translate(-50%, 0);width: 200px;opacity: 0;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}@media screen and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share .expose_mod_share ul{right: 0;left: auto;-moz-transform: translate(0, 0);-webkit-transform: translate(0, 0);-o-transform: translate(0, 0);-ms-transform: translate(0, 0);transform: translate(0, 0)}}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share .expose_mod_share ul li{display: block;text-align: left}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share .expose_mod_share ul li a{display: block;padding: 5px 10px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;text-decoration: none;font-size: 14px;background-color: #3e2682;color: #fff}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share .expose_mod_share ul li a:hover{background-color: #dddc03;color: #3e2682}.mod_realEstateExpose .content .object-expose-content .object-expose-main #options-and-share #share .expose_mod_share:hover ul{opacity: 1}.mod_realEstateExpose .content .object-expose-content .object-expose-left{display: inline-block;vertical-align: top;width: 69.60641398999999%;padding-right: 16.5px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box}@media screen and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-left{width: 100%;padding-right: 0}}.mod_realEstateExpose .content .object-expose-content .object-expose-left .objektangaben .headline{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 21px;line-height: 1.33333333;margin: 0 0 21px 0;color: #3e2682}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-left .objektangaben .headline{font-size: 18.9px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-left .objektangaben .headline{font-size: 18px}}.mod_realEstateExpose .content .object-expose-content .object-expose-left .objektangaben .content h3{display: none}@media screen and (min-width: 1024px){.mod_realEstateExpose .content .object-expose-content .object-expose-left .objektangaben .content{-moz-column-width: 50%;-moz-column-count: 2;-moz-column-gap: 40px;-moz-column-rule-color: transparent;-moz-column-rule-style: none;-moz-column-rule-width: 0;-webkit-column-width: 50%;-webkit-column-count: 2;-webkit-column-gap: 40px;-webkit-column-rule-color: transparent;-webkit-column-rule-style: none;-webkit-column-rule-width: 0;column-width: 50%;column-count: 2;column-gap: 40px;column-rule-color: transparent;column-rule-style: none;column-rule-width: 0}}.mod_realEstateExpose .content .object-expose-content .object-expose-left .objektangaben .content .field{display: grid;grid-template-columns: repeat(2, minmax(0, 1fr));justify-content: flex-start;align-items: flex-start;column-gap: 16px;row-gap: 0;margin-top: 16px}@media screen and (max-width: 360px){.mod_realEstateExpose .content .object-expose-content .object-expose-left .objektangaben .content .field{grid-template-columns: 100%}}body.firefox .mod_realEstateExpose .content .object-expose-content .object-expose-left .objektangaben .content .field{break-before: avoid}.mod_realEstateExpose .content .object-expose-content .object-expose-left .objektangaben .content .field:nth-child(-n+1){margin-top: 0}.mod_realEstateExpose .content .object-expose-content .object-expose-left .objektangaben .content .field .label{font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 18px;line-height: 1.33333333;color: #707070}.mod_realEstateExpose .content .object-expose-content .object-expose-left .objektangaben .content .field .value{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 18px;line-height: 1.33333333;color: #0f0921}.mod_realEstateExpose .content .object-expose-content .object-expose-left .expose_mod_gallery .gallery-inner.owl-singleitem .owl-stage,.mod_realEstateExpose .content .object-expose-content .object-expose-left .expose_mod_gallery .gallery-inner.owl-singleitem .owl-item{width: 100% !important}.mod_realEstateExpose .content .object-expose-content .object-expose-left .expose_mod_gallery .gallery-inner .gallery-item.image img{display: block;width: 100%;max-width: 300px;height: auto;margin: 0 auto;aspect-ratio: 555/782;-moz-object-fit: contain;-webkit-object-fit: contain;-o-object-fit: contain;-ms-object-fit: contain;object-fit: contain;-moz-object-position: center center;-webkit-object-position: center center;-o-object-position: center center;-ms-object-position: center center;object-position: center center;font-family: "object-fit:contain; object-position:center center;"}.mod_realEstateExpose .content .object-expose-content .object-expose-left .expose_mod_gallery .headline{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 21px;line-height: 1.33333333;color: #3e2682;margin: 0;margin-bottom: 30px}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-left .expose_mod_gallery .headline{font-size: 18.9px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-left .expose_mod_gallery .headline{font-size: 18px}}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-left .expose_mod_gallery .headline{margin-bottom: 27px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-left .expose_mod_gallery .headline{margin-bottom: 24px}}.mod_realEstateExpose .content .object-expose-content .object-expose-left .energiebar_container .headline{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 21px;line-height: 1.33333333;margin: 0 0 21px 0;color: #3e2682}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-left .energiebar_container .headline{font-size: 18.9px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-left .energiebar_container .headline{font-size: 18px}}.mod_realEstateExpose .content .object-expose-content .object-expose-left .energiebar_container .content h3{display: none}@media screen and (min-width: 1024px){.mod_realEstateExpose .content .object-expose-content .object-expose-left .energiebar_container .content .fields-outer{-moz-column-width: 50%;-moz-column-count: 2;-moz-column-gap: 40px;-moz-column-rule-color: transparent;-moz-column-rule-style: none;-moz-column-rule-width: 0;-webkit-column-width: 50%;-webkit-column-count: 2;-webkit-column-gap: 40px;-webkit-column-rule-color: transparent;-webkit-column-rule-style: none;-webkit-column-rule-width: 0;column-width: 50%;column-count: 2;column-gap: 40px;column-rule-color: transparent;column-rule-style: none;column-rule-width: 0}}.mod_realEstateExpose .content .object-expose-content .object-expose-left .energiebar_container .content .fields-outer .field{display: grid;grid-template-columns: repeat(2, minmax(0, 1fr));justify-content: flex-start;align-items: flex-start;column-gap: 16px;row-gap: 0;margin-top: 16px}@media screen and (max-width: 360px){.mod_realEstateExpose .content .object-expose-content .object-expose-left .energiebar_container .content .fields-outer .field{grid-template-columns: 100%}}body.firefox .mod_realEstateExpose .content .object-expose-content .object-expose-left .energiebar_container .content .fields-outer .field{break-before: avoid}.mod_realEstateExpose .content .object-expose-content .object-expose-left .energiebar_container .content .fields-outer .field:nth-child(-n+1){margin-top: 0}.mod_realEstateExpose .content .object-expose-content .object-expose-left .energiebar_container .content .fields-outer .field .label{font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 18px;line-height: 1.33333333;color: #707070}.mod_realEstateExpose .content .object-expose-content .object-expose-left .energiebar_container .content .fields-outer .field .value{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 18px;line-height: 1.33333333;color: #0f0921}.mod_realEstateExpose .content .object-expose-content .object-expose-left .energiebar_container .energiebar{display: block;margin-top: 20px}.mod_realEstateExpose .content .object-expose-content .object-expose-left .expose_mod_googleMap .headline{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 21px;line-height: 1.33333333;margin: 0 0 21px 0;color: #3e2682}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-left .expose_mod_googleMap .headline{font-size: 18.9px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-left .expose_mod_googleMap .headline{font-size: 18px}}.mod_realEstateExpose .content .object-expose-content .object-expose-left .expose_mod_googleMap .content h3{display: none}.mod_realEstateExpose .content .object-expose-content .object-expose-left .expose_mod_googleMap .content .google-map{position: relative;width: 100%;height: auto;aspect-ratio: 857/400}.mod_realEstateExpose .content .object-expose-content .object-expose-left .expose_mod_googleMap .content .google-map > div{display: block;width: 100%;height: 100%}.mod_realEstateExpose .content .object-expose-content .object-expose-right{display: inline-block;vertical-align: top;width: 30.39358601%;padding-left: 16.5px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box}@media screen and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-right{width: 100%;padding-left: 0}}@media screen and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-right{margin-top: 0}}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm > .headline{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 21px;line-height: 1.33333333;margin: 0 0 21px 0;color: #3e2682}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm > .headline{font-size: 18.9px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm > .headline{font-size: 18px}}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content .ansprechperson{margin-bottom: 33px;display: grid;grid-template-columns: auto minmax(0, 1fr);justify-content: center;align-items: center;column-gap: 12px;row-gap: 0}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content .ansprechperson{margin-bottom: 29.7px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content .ansprechperson{margin-bottom: 26.4px}}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content .ansprechperson figure{display: block;width: 102px;height: auto;aspect-ratio: 1/1;border-radius: 100%;padding: 7px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;background-color: #fff}body.safari .mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content .ansprechperson figure{height: 102px}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content .ansprechperson figure img{display: block;width: 100%;height: 100%;-moz-object-fit: cover;-webkit-object-fit: cover;-o-object-fit: cover;-ms-object-fit: cover;object-fit: cover;-moz-object-position: center center;-webkit-object-position: center center;-o-object-position: center center;-ms-object-position: center center;object-position: center center;font-family: "object-fit:cover; object-position:center center;";border-radius: 100%}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content .ansprechperson .info .name{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 15px;line-height: 1.86666667;margin: 0 0 8px 0}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content .ansprechperson .info .position{font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 15px;line-height: 1.86666667;color: #707070;margin: 0 0 5px 0}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content .ansprechperson .info .phone{position: relative;display: block;font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 15px;line-height: 1.86666667;color: #3e2682;text-decoration: none;padding-left: 23.96px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content .ansprechperson .info .phone:before{content: "";display: block;width: 16.26px;height: auto;aspect-ratio: 1/1;background-image: url("/files/theme/i/icons/phone-blue.svg");background-size: contain;background-repeat: no-repeat;background-position: center center;position: absolute;top: 50%;left: 0;-moz-transform: translate(0, -50%);-webkit-transform: translate(0, -50%);-o-transform: translate(0, -50%);-ms-transform: translate(0, -50%);transform: translate(0, -50%)}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content .ansprechperson .info .phone:hover{text-decoration: underline}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content form .widget.mandatory{position: relative}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content form .widget.mandatory:before{content: "*";position: absolute;top: 2px;right: 7px;z-index: 2;font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 15px;color: #707070}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content form .widget.mandatory label .mandatory{display: none}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content form .widget.mandatory.widget-checkbox:before,.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content form .widget.mandatory.widget-radio:before{display: none}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content form .widget.mandatory.widget-checkbox label .mandatory,.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content form .widget.mandatory.widget-radio label .mandatory{display: inline}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content form .widget.widget-submit{text-align: center;margin-top: 47px}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content form .widget.widget-submit{margin-top: 42.3px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_enquiryForm .content form .widget.widget-submit{margin-top: 37.6px}}@media screen and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_virtualTour{text-align: center}}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_virtualTour .headline{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 21px;line-height: 1.33333333;color: #3e2682;margin: 21px 0 17px 0}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_virtualTour .headline{font-size: 18.9px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_virtualTour .headline{font-size: 18px}}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_virtualTour .virtual-tour-description{font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 18px;line-height: 1.55555556;color: #707070}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_virtualTour .virtual-tour-description{font-size: 18px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_virtualTour .virtual-tour-description{font-size: 18px}}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_virtualTour .virtual-tour-link{text-align: center}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_virtualTour .virtual-tour-link a{margin-top: 37px}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_virtualTour .virtual-tour-link a{margin-top: 33.3px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_virtualTour .virtual-tour-link a{margin-top: 29.6px}}@media screen and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_video{text-align: center}}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_video .headline{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 21px;line-height: 1.33333333;color: #3e2682;margin: 21px 0 17px 0}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_video .headline{font-size: 18.9px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_video .headline{font-size: 18px}}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_video .video-description{font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 18px;line-height: 1.55555556;color: #707070}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_video .video-description{font-size: 18px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_video .video-description{font-size: 18px}}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_video .video-link{text-align: center}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_video .video-link a{margin-top: 37px}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_video .video-link a{margin-top: 33.3px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_video .video-link a{margin-top: 29.6px}}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_attachments .headline{font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 21px;line-height: 1.33333333;color: #3e2682;margin: 21px 0 17px 0}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_attachments .headline{font-size: 18.9px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_attachments .headline{font-size: 18px}}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_attachments ul{display: grid;grid-template-columns: auto;justify-content: flex-start;align-items: flex-start;column-gap: 0;row-gap: 17px;grid-auto-flow: row}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_attachments ul li a{display: grid;grid-template-columns: auto minmax(0, 1fr);justify-content: center;align-items: stretch;column-gap: 15px;row-gap: 0;color: #0f0921}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_attachments ul li a i{position: relative;display: block;width: 44px;min-height: 44px}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_attachments ul li a i:before,.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_attachments ul li a i:after{content: "";display: block;width: 44px;height: auto;aspect-ratio: 1/1;position: absolute;top: 0;left: 0}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_attachments ul li a i:before{background-color: #dddc03}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_attachments ul li a i:after{background-size: 22px auto;background-position: center center;background-repeat: no-repeat}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_attachments ul li a .text{font-family: 'GeneralSans-Medium';font-weight: 500;font-size: 18px;line-height: 1.33333333;text-decoration: none;display: flex;align-items: center;word-break: break-all}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_attachments.downloads_element ul li a i:after{background-image: url("/files/theme/i/icons/downloads.svg")}.mod_realEstateExpose .content .object-expose-content .object-expose-right .expose_mod_attachments.links_element ul li a i:after{background-image: url("/files/theme/i/icons/external-link.svg")}.mod_realEstateExpose .content .object-expose-content .object-expose-left > div,.mod_realEstateExpose .content .object-expose-content .object-expose-right > div{background-color: #f4f4f4;padding: 40px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;margin-top: 34px}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-left > div,.mod_realEstateExpose .content .object-expose-content .object-expose-right > div{margin-top: 30.6px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content .object-expose-left > div,.mod_realEstateExpose .content .object-expose-content .object-expose-right > div{margin-top: 27.2px}}@media screen and (max-width: 599px){.mod_realEstateExpose .content .object-expose-content .object-expose-left > div,.mod_realEstateExpose .content .object-expose-content .object-expose-right > div{padding: 30px 15px}}@media screen and (min-width: 600px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content .object-expose-left > div,.mod_realEstateExpose .content .object-expose-content .object-expose-right > div{padding: 30px}}.mod_realEstateExpose .content .object-expose-content .object-expose-left > div:first-child,.mod_realEstateExpose .content .object-expose-content .object-expose-right > div:first-child{margin-top: 0}.mod_realEstateExpose .content .object-expose-content-bottom{margin-top: 41px}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .content .object-expose-content-bottom{margin-top: 36.9px}}@media screen and (max-width: 767px){.mod_realEstateExpose .content .object-expose-content-bottom{margin-top: 32.8px}}.mod_realEstateExpose .content .object-expose-content .object-expose-left .rsce_accordions.expose_mod_texts{padding: 0;margin: 0;background: transparent}.mod_realEstateExpose .content .object-expose-content .object-expose-left .rsce_accordions.expose_mod_texts .accordions .accordion:last-child{border-bottom: none}.mod_realEstateExpose .is_accordion{padding: 0 !important;border-top: 1px solid #878787;margin: 0 !important;background-color: transparent !important}.mod_realEstateExpose .is_accordion > .headline{position: relative;cursor: pointer;display: block;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out;overflow: hidden;font-family: 'GeneralSans-Semibold';font-weight: 600;font-size: 25px!important;line-height: 1.28 !important;padding: 25px 65px 10.8px 0;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;text-align: left;margin: 0 !important}@media screen and (min-width: 768px) and (max-width: 1023px){.mod_realEstateExpose .is_accordion > .headline{font-size: 22.5px!important}}@media screen and (max-width: 767px){.mod_realEstateExpose .is_accordion > .headline{font-size: 20px!important}}.mod_realEstateExpose .is_accordion > .headline span{position: relative;max-width: 100%;white-space: nowrap;padding-bottom: 14.2px;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;display: inline-block}.mod_realEstateExpose .is_accordion > .headline span:after{content: "";position: absolute;bottom: 0;-moz-transform: translate(0, 0);-webkit-transform: translate(0, 0);-o-transform: translate(0, 0);-ms-transform: translate(0, 0);transform: translate(0, 0);left: 0;-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out;height: 8px;width: 100%;background-color: #dddc03}.mod_realEstateExpose .is_accordion > .headline:before{content: "";display: block;width: 30px;height: auto;aspect-ratio: 29.635/16.046;background-image: url("/files/theme/i/icons/accordion-arrowdown.svg");background-size: contain;background-repeat: no-repeat;background-position: center center;position: absolute;top: 50%;right: 25px;-moz-transform: translate(0, -50%) rotate(-180deg);-webkit-transform: translate(0, -50%) rotate(-180deg);-o-transform: translate(0, -50%) rotate(-180deg);-ms-transform: translate(0, -50%) rotate(-180deg);transform: translate(0, -50%) rotate(-180deg);-webkit-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;transition: all .3s ease-in-out}.mod_realEstateExpose .is_accordion > .content{padding: 20px 0 33px 0;-ms-box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box}.mod_realEstateExpose .is_accordion.accordion_closed > .headline span:after{-moz-transform: translate(-100%, 0);-webkit-transform: translate(-100%, 0);-o-transform: translate(-100%, 0);-ms-transform: translate(-100%, 0);transform: translate(-100%, 0)}.mod_realEstateExpose .is_accordion.accordion_closed > .headline:before{-moz-transform: translate(0, -50%) rotate(0deg);-webkit-transform: translate(0, -50%) rotate(0deg);-o-transform: translate(0, -50%) rotate(0deg);-ms-transform: translate(0, -50%) rotate(0deg);transform: translate(0, -50%) rotate(0deg)}.mod_realEstateExpose .is_accordion.last_accordion{border-bottom: 1px solid #878787}
.rsce_landingpage_intro {
  position: relative;
  max-width: 1410px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.rsce_landingpage_intro .wrap_blocks {
  position: static;
  max-width: 1154px;
  margin: 0 auto;
}
.rsce_landingpage_intro .wrap_blocks .landing-block {
  position: relative;
  z-index: 2;
}
.rsce_landingpage_intro .wrap_blocks .landing-block:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #3e2682;
  position: absolute;
  bottom: 0;
  left: 50%;
  -moz-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.rsce_landingpage_intro .wrap_blocks .landing-block .logo {
  position: absolute;
  top: 40%;
  left: 44%;
  -moz-transform: translate(-50%, -50%) scale(0.6);
  -webkit-transform: translate(-50%, -50%) scale(0.6);
  -o-transform: translate(-50%, -50%) scale(0.6);
  -ms-transform: translate(-50%, -50%) scale(0.6);
  transform: translate(-50%, -50%) scale(0.6);
  z-index: 1;
  -webkit-transition: all 1.2s ease-in-out;
  -moz-transition: all 1.2s ease-in-out;
  transition: all 1.2s ease-in-out;
}
.rsce_landingpage_intro .wrap_blocks .landing-block .inside {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-content: center;
  align-items: center;
  column-gap: 123.8px;
  row-gap: 0;
}
.rsce_landingpage_intro .wrap_blocks .landing-block .inside .right {
  max-width: 430px;
  padding-top: 140px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_landingpage_intro .wrap_blocks .landing-block .inside .right {
    padding-top: 126px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_landingpage_intro .wrap_blocks .landing-block .inside .right {
    padding-top: 112px;
  }
}
.rsce_landingpage_intro .wrap_blocks .landing-block .inside .right .headline {
  font-family: 'GeneralSans-Semibold';
  font-weight: 600;
  font-size: 70px;
  line-height: 1.14285714;
  color: #3e2682;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_landingpage_intro .wrap_blocks .landing-block .inside .right .headline {
    font-size: 63px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_landingpage_intro .wrap_blocks .landing-block .inside .right .headline {
    font-size: 56px;
  }
}
.rsce_landingpage_intro .wrap_blocks .landing-block.animate .logo {
  -moz-transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.rsce_landingpage_intro .wrap_blocks .counter-block {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 37px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  justify-content: center;
  align-items: center;
  column-gap: 50px;
  row-gap: 0;
}
.rsce_landingpage_intro .wrap_blocks .counter-block .left {
  max-width: 300px;
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .rsce_landingpage_intro .wrap_blocks .counter-block .left {
    max-width: 240px;
  }
}
.rsce_landingpage_intro .wrap_blocks .counter-block .left .headline {
  font-family: 'GeneralSans-Bold';
  font-weight: 700;
  font-size: 51px;
  line-height: 1;
  text-transform: uppercase;
  color: #3e2682;
  margin: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_landingpage_intro .wrap_blocks .counter-block .left .headline {
    font-size: 45.9px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_landingpage_intro .wrap_blocks .counter-block .left .headline {
    font-size: 40.8px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .rsce_landingpage_intro .wrap_blocks .counter-block .left .headline {
    font-size: 40px;
  }
}
.rsce_landingpage_intro .wrap_blocks .counter-block .right ul {
  display: grid;
  grid-auto-template: minmax(0, 1fr);
  grid-auto-flow: column;
  column-gap: 50px;
}
.rsce_landingpage_intro .wrap_blocks .counter-block .right ul li {
  text-align: center;
}
.rsce_landingpage_intro .wrap_blocks .counter-block .right ul li .count {
  font-family: 'GeneralSans-Semibold';
  font-weight: 600;
  font-size: 79px;
  line-height: 1.41772152;
  color: transparent;
  -webkit-text-stroke: 2px #3e2682;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_landingpage_intro .wrap_blocks .counter-block .right ul li .count {
    font-size: 71.09999999999999px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_landingpage_intro .wrap_blocks .counter-block .right ul li .count {
    font-size: 63.2px;
  }
}
.rsce_landingpage_intro .wrap_blocks .counter-block .right ul li .count::selection {
  -webkit-text-stroke: 2px #3e2682;
  background-color: #B4D5FE;
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .rsce_landingpage_intro .wrap_blocks .counter-block .right ul li .count {
    font-size: 60px;
  }
}
.rsce_landingpage_intro .wrap_blocks .counter-block .right ul li .caption {
  font-family: 'GeneralSans-Semibold';
  font-weight: 600;
  font-size: 14px;
  line-height: 1.28571429;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #3e2682;
}
.rsce_landingpage_intro .wrap_blocks .triangle {
  position: absolute;
  top: 0;
  left: -1px;
  z-index: 1;
  pointer-events: none;
}
.rsce_landingpage_intro .news-block {
  margin-top: 105px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-content: stretch;
  align-items: stretch;
  column-gap: 24px;
  row-gap: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_landingpage_intro .news-block {
    margin-top: 94.5px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_landingpage_intro .news-block {
    margin-top: 84px;
  }
}
.rsce_landingpage_intro .news-block .left {
  position: relative;
}
.rsce_landingpage_intro .news-block .left img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -moz-object-fit: cover;
  -webkit-object-fit: cover;
  -o-object-fit: cover;
  -ms-object-fit: cover;
  object-fit: cover;
  -moz-object-position: center center;
  -webkit-object-position: center center;
  -o-object-position: center center;
  -ms-object-position: center center;
  object-position: center center;
  font-family: "object-fit:cover; object-position:center center;";
}
.rsce_landingpage_intro .news-block .left figcaption {
  position: absolute;
  bottom: 0;
  right: 48.2px;
  font-family: 'GeneralSans-Bold';
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_landingpage_intro .news-block .left figcaption {
    font-size: 72px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_landingpage_intro .news-block .left figcaption {
    font-size: 64px;
  }
}
.rsce_landingpage_intro .news-block .right {
  max-width: 340px;
}
.rsce_landingpage_intro .news-block .right .crumb {
  display: inline-block;
  font-family: 'GeneralSans-Semibold';
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  background-color: #dddc03;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 13px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 0 10px 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_landingpage_intro .news-block .right .crumb {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_landingpage_intro .news-block .right .crumb {
    font-size: 18px;
  }
}
.rsce_landingpage_intro .news-block .right .headline {
  font-family: 'GeneralSans-Semibold';
  font-weight: 600;
  font-size: 40px;
  line-height: 1.25;
  color: #3e2682;
  margin: 0 0 18px 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_landingpage_intro .news-block .right .headline {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_landingpage_intro .news-block .right .headline {
    font-size: 32px;
  }
}
.rsce_landingpage_intro .news-block .right .text {
  font-size: 18px;
  line-height: 1.55555556;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_landingpage_intro .news-block .right .text {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_landingpage_intro .news-block .right .text {
    font-size: 18px;
  }
}
.rsce_landingpage_intro .news-block .right .text .list {
  font-family: 'GeneralSans-Medium';
  font-weight: 500;
}
.rsce_landingpage_intro .news-block .right .text .list li {
  position: relative;
  padding-left: 26px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 8px;
}
.rsce_landingpage_intro .news-block .right .text .list li:first-child {
  margin-top: 0;
}
.rsce_landingpage_intro .news-block .right .text .list li svg {
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
  -moz-object-fit: contain;
  -webkit-object-fit: contain;
  -o-object-fit: contain;
  -ms-object-fit: contain;
  object-fit: contain;
  -moz-object-position: center center;
  -webkit-object-position: center center;
  -o-object-position: center center;
  -ms-object-position: center center;
  object-position: center center;
  font-family: "object-fit:contain; object-position:center center;";
}
.rsce_landingpage_intro .news-block .right .btn {
  margin-top: 40px;
}
@media screen and (max-width: 1023px) {
  .rsce_landingpage_intro .wrap_blocks .landing-block .logo {
    position: relative;
    top: auto;
    left: auto;
    -moz-transform: translate(0, 0) !important;
    -webkit-transform: translate(0, 0) !important;
    -o-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
    text-align: center;
  }
  .rsce_landingpage_intro .wrap_blocks .landing-block .logo img,
  .rsce_landingpage_intro .wrap_blocks .landing-block .logo svg {
    max-width: 100px;
  }
  .rsce_landingpage_intro .wrap_blocks .landing-block .inside {
    grid-template-columns: auto;
    justify-content: center;
    align-items: center;
  }
  .rsce_landingpage_intro .wrap_blocks .landing-block .inside .left {
    order: 2;
  }
  .rsce_landingpage_intro .wrap_blocks .landing-block .inside .left .person {
    max-width: 200px;
    margin: 0 auto;
  }
  .rsce_landingpage_intro .wrap_blocks .landing-block .inside .right {
    order: 1;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .rsce_landingpage_intro .wrap_blocks .counter-block {
    grid-template-columns: auto;
    padding: 0 15px;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .rsce_landingpage_intro .wrap_blocks .counter-block .left {
    max-width: 100%;
    text-align: center;
  }
  .rsce_landingpage_intro .wrap_blocks .counter-block .right ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    row-gap: 20px;
    margin-top: 20px;
  }
  .rsce_landingpage_intro .news-block {
    grid-template-columns: auto;
    row-gap: 40px;
  }
  .rsce_landingpage_intro .news-block .left {
    width: 100%;
    height: auto;
    aspect-ratio: 922.5/393.99;
  }
  .rsce_landingpage_intro .news-block .left figure {
    width: 100%;
    height: 100%;
  }
  .rsce_landingpage_intro .news-block .left figure img {
    position: relative;
    top: auto;
    left: auto;
  }
  .rsce_landingpage_intro .news-block .left figcaption {
    right: 15px;
  }
  .rsce_landingpage_intro .news-block .right {
    max-width: 100%;
    padding: 0 15px;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 599px) {
  .rsce_landingpage_intro .wrap_blocks .landing-block .inside .right .headline {
    font-size: 40px;
  }
  .rsce_landingpage_intro .wrap_blocks .counter-block .right ul li .count {
    font-size: 40px;
    -webkit-text-stroke-width: 1px;
  }
  .rsce_landingpage_intro .news-block .left figcaption {
    font-size: 40px;
  }
}

.rsce_contentwrapper {
  position: relative;
  overflow: hidden;
}
.rsce_contentwrapper .inside {
  max-width: 100%;
  width: 1440px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.rsce_contentwrapper .inside.width {
  width: var(--w);
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .rsce_contentwrapper .inside.tabletwidth {
    width: var(--tw);
  }
}
@media screen and (max-width: 599px) {
  .rsce_contentwrapper .inside.mobilewidth {
    width: var(--mw);
  }
}
.rsce_contentwrapper .inside.align_left {
  margin-left: 0;
  margin-right: auto;
}
.rsce_contentwrapper .inside.align_right {
  margin-left: auto;
  margin-right: 0;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .rsce_contentwrapper .inside.tablet_align_left {
    margin-left: 0;
    margin-right: auto;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .rsce_contentwrapper .inside.tablet_align_right {
    margin-left: auto;
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .rsce_contentwrapper .inside.mobile_align_left {
    margin-left: 0;
    margin-right: auto;
  }
}
@media screen and (max-width: 599px) {
  .rsce_contentwrapper .inside.mobile_align_right {
    margin-left: auto;
    margin-right: 0;
  }
}
.rsce_contentwrapper.nopadding {
  padding: 0;
}
.rsce_contentwrapper.has_bgwall {
  position: relative;
}
.rsce_contentwrapper.has_bgwall .inside {
  position: relative;
  z-index: 2;
}
.rsce_contentwrapper.has_bgwall .background {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.rsce_contentwrapper.has_bgwall .background:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 2;
}
.rsce_contentwrapper.has_bgwall .background .bg {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.rsce_contentwrapper.has_bgwall .background .bg img,
.rsce_contentwrapper.has_bgwall .background .bg svg {
  display: block;
  width: 100%;
  height: 100%;
  -moz-object-fit: cover;
  -webkit-object-fit: cover;
  -o-object-fit: cover;
  -ms-object-fit: cover;
  object-fit: cover;
  -moz-object-position: center center;
  -webkit-object-position: center center;
  -o-object-position: center center;
  -ms-object-position: center center;
  object-position: center center;
  font-family: "object-fit:cover; object-position:center center;";
}
.rsce_contentwrapper.large_yellowarrow_left {
  position: relative;
}
.rsce_contentwrapper.large_yellowarrow_left:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 19%;
  left: 0;
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 950px;
  height: auto;
  aspect-ratio: 951.182/2077.244;
  background-image: url("/files/theme/i/bg/team-large-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.rsce_contentwrapper.large_yellowarrow_left .inside {
  position: relative;
  z-index: 2;
}

.rsce_textblock_columns {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
  align-items: var(--alignItems);
  column-gap: var(--columnGap);
  grid-template-columns: var(--templateColumns);
}
@media screen and (max-width: 1023px) {
  .rsce_textblock_columns {
    grid-template-columns: auto;
    grid-auto-flow: row;
    row-gap: 20px;
  }
}
.rsce_textblock_columns .text.column-slogan {
  font-family: 'GeneralSans-Bold';
  font-weight: 700;
  font-size: 80px;
  line-height: 0.9375;
  color: #dddc03;
  text-transform: uppercase;
  margin: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_textblock_columns .text.column-slogan {
    font-size: 72px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_textblock_columns .text.column-slogan {
    font-size: 64px;
  }
}
.rsce_textblock_columns .text.column-headline {
  font-family: 'GeneralSans-Semibold';
  font-weight: 600;
  font-size: 30px;
  line-height: 1.33333333;
  color: #3e2682;
  margin: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_textblock_columns .text.column-headline {
    font-size: 27px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_textblock_columns .text.column-headline {
    font-size: 24px;
  }
}
.rsce_textblock_columns .text.column-none {
  font-family: 'GeneralSans-Regular';
  font-weight: 400;
  line-height: 1.55555556;
}
@media screen and (max-width: 1023px) {
  .rsce_textblock_columns .text.column-none {
    grid-template: 1/3;
  }
}

.rsce_triangle_slider {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .rsce_triangle_slider .slider .owl-item {
    overflow: hidden;
  }
}
.rsce_triangle_slider .slider .slide {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 40px;
  row-gap: 0;
}
@media screen and (max-width: 1023px) {
  .rsce_triangle_slider .slider .slide {
    grid-template-columns: auto;
  }
}
.rsce_triangle_slider .slider .slide .left {
  max-width: 440px;
  order: 2;
}
@media screen and (max-width: 1023px) {
  .rsce_triangle_slider .slider .slide .left {
    position: relative;
    z-index: 2;
    padding: 0 0 30px 0;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    order: 1;
  }
}
.rsce_triangle_slider .slider .slide .left .crumb {
  display: inline-block;
  font-family: 'GeneralSans-Semibold';
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  letter-spacing: 0.1em;
  background-color: #dddc03;
  color: #3e2682;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  padding: 2px 13px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_triangle_slider .slider .slide .left .crumb {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_triangle_slider .slider .slide .left .crumb {
    font-size: 18px;
  }
}
.rsce_triangle_slider .slider .slide .left .headline {
  font-family: 'GeneralSans-Semibold';
  font-weight: 600;
  font-size: 40px;
  line-height: 1.25;
  margin: 0 0 20px 0;
  color: #3e2682;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_triangle_slider .slider .slide .left .headline {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_triangle_slider .slider .slide .left .headline {
    font-size: 32px;
  }
}
.rsce_triangle_slider .slider .slide .left .text {
  margin: 0 0 40px 0;
  line-height: 1.55555556;
}
.rsce_triangle_slider .slider .slide .right {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .rsce_triangle_slider .slider .slide .right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .rsce_triangle_slider .slider .slide .right:before {
    content: "";
    background-color: rgba(255, 255, 255, 0.75);
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .rsce_triangle_slider .slider .slide .right figure {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
  }
  .rsce_triangle_slider .slider .slide .right figure img {
    height: 100%;
    width: 100%;
    aspect-ratio: auto;
    margin: 0 0 0 auto;
  }
}
.rsce_triangle_slider .slider .slide .right img {
  position: relative;
  z-index: 1;
  aspect-ratio: 922.5/558;
  -moz-object-fit: cover;
  -webkit-object-fit: cover;
  -o-object-fit: cover;
  -ms-object-fit: cover;
  object-fit: cover;
  -moz-object-position: center center;
  -webkit-object-position: center center;
  -o-object-position: center center;
  -ms-object-position: center center;
  object-position: center center;
  font-family: "object-fit:cover; object-position:center center;";
  max-width: 800px;
}
.rsce_triangle_slider .slider .slide .right svg {
  position: absolute;
  z-index: 2;
  top: -1px;
  left: -1px;
  width: auto;
  height: 100%;
  height: calc(100% + 2px);
  -moz-object-fit: cover;
  -webkit-object-fit: cover;
  -o-object-fit: cover;
  -ms-object-fit: cover;
  object-fit: cover;
  -moz-object-position: center center;
  -webkit-object-position: center center;
  -o-object-position: center center;
  -ms-object-position: center center;
  object-position: center center;
  font-family: "object-fit:cover; object-position:center center;";
  display: none;
}
.rsce_triangle_slider .fancy-dots {
  text-align: right;
  margin-top: 15px;
}
.rsce_triangle_slider .fancy-dots ul {
  display: inline-block;
  vertical-align: middle;
}
.rsce_triangle_slider .fancy-dots ul li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  font-family: 'GeneralSans-Semibold';
  font-weight: 600;
  font-size: 36px;
  line-height: 1.61111111;
  color: #3e2682;
  cursor: pointer;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_triangle_slider .fancy-dots ul li {
    font-size: 32.4px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_triangle_slider .fancy-dots ul li {
    font-size: 28.8px;
  }
}
.rsce_triangle_slider .fancy-dots ul li:first-child {
  margin-left: 0;
}
.rsce_triangle_slider .fancy-dots ul li:first-child:before {
  display: none;
}
.rsce_triangle_slider .fancy-dots ul li:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 2px;
  background-color: #3e2682;
  margin-right: 10px;
}
.rsce_triangle_slider .fancy-dots ul li.passed,
.rsce_triangle_slider .fancy-dots ul li.active {
  color: #dddc03;
}
.rsce_triangle_slider .fancy-dots ul li.passed:before,
.rsce_triangle_slider .fancy-dots ul li.active:before {
  background-color: #dddc03;
}

.rsce_form_newsletter {
  position: relative;
  padding-top: 91px;
  padding-bottom: 88.09999999999999px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_form_newsletter {
    padding-top: 81.90000000000001px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_form_newsletter {
    padding-top: 72.8px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_form_newsletter {
    padding-bottom: 79.29000000000001px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_form_newsletter {
    padding-bottom: 70.48px;
  }
}
.rsce_form_newsletter .text_container {
  position: relative;
  z-index: 2;
  max-width: 100%;
  width: 1440px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
}
.rsce_form_newsletter .text_container .crumb {
  font-family: 'GeneralSans-Semibold';
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_form_newsletter .text_container .crumb {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_form_newsletter .text_container .crumb {
    font-size: 18px;
  }
}
.rsce_form_newsletter .text_container .headline {
  font-family: 'GeneralSans-Bold';
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  color: #dddc03;
  margin: 0 0 30px 0;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_form_newsletter .text_container .headline {
    font-size: 72px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_form_newsletter .text_container .headline {
    font-size: 64px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .rsce_form_newsletter .text_container .headline {
    font-size: 65px;
  }
}
@media screen and (max-width: 599px) {
  .rsce_form_newsletter .text_container .headline {
    font-size: 45px;
  }
}
.rsce_form_newsletter .text_container form {
  max-width: 600px;
  margin: 0 auto;
}
.rsce_form_newsletter .text_container form .widget.widget-checkbox span label a {
  color: inherit;
}
.rsce_form_newsletter .text_container form .email_wrap {
  display: block;
  position: relative;
}
@media screen and (max-width: 400px) {
  .rsce_form_newsletter .text_container form .email_wrap .widget.widget-text {
    margin-bottom: 0;
  }
}
.rsce_form_newsletter .text_container form .email_wrap .widget.widget-text input {
  border-radius: 38px;
  height: 50px;
  line-height: 50px;
  padding: 0 195px 0 25px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 400px) {
  .rsce_form_newsletter .text_container form .email_wrap .widget.widget-text input {
    padding-right: 25px;
    text-align: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.rsce_form_newsletter .text_container form .email_wrap .widget.widget-submit {
  position: absolute;
  top: 50%;
  right: -1px;
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  height: 100%;
}
@media screen and (max-width: 400px) {
  .rsce_form_newsletter .text_container form .email_wrap .widget.widget-submit {
    position: relative;
    top: auto;
    right: auto;
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    height: auto;
    margin-bottom: 30px;
  }
  .rsce_form_newsletter .text_container form .email_wrap .widget.widget-submit button {
    width: 100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
}
.rsce_form_newsletter .text_container form .widget.widget-checkbox label {
  color: #fff;
}
.rsce_form_newsletter .image_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.rsce_form_newsletter .image_container:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(62, 38, 130, 0.75);
}
.rsce_form_newsletter .image_container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -moz-object-fit: cover;
  -webkit-object-fit: cover;
  -o-object-fit: cover;
  -ms-object-fit: cover;
  object-fit: cover;
  -moz-object-position: center center;
  -webkit-object-position: center center;
  -o-object-position: center center;
  -ms-object-position: center center;
  object-position: center center;
  font-family: "object-fit:cover; object-position:center center;";
  z-index: 1;
}

.rsce_textbg {
  position: relative;
  overflow: hidden;
}
.rsce_textbg .inner {
  position: relative;
  max-width: 100%;
  width: 1440px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.rsce_textbg .inner .content-wrap {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 631px;
  margin: 0 0 0 auto;
  padding-top: 290px;
  padding-bottom: 302px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_textbg .inner .content-wrap {
    padding-top: 261px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_textbg .inner .content-wrap {
    padding-top: 232px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_textbg .inner .content-wrap {
    padding-bottom: 271.8px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_textbg .inner .content-wrap {
    padding-bottom: 241.6px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .rsce_textbg .inner .content-wrap {
    padding-top: 174px;
    padding-bottom: 174px;
  }
}
@media screen and (max-width: 599px) {
  .rsce_textbg .inner .content-wrap {
    padding-top: 116px;
    padding-bottom: 116px;
  }
}
.rsce_textbg .inner .content-wrap .text {
  font-family: 'GeneralSans-Semibold';
  font-weight: 600;
  font-size: 50px;
  line-height: 1.2;
  color: #3e2682;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_textbg .inner .content-wrap .text {
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_textbg .inner .content-wrap .text {
    font-size: 40px;
  }
}
.rsce_textbg .inner .content-wrap .btn {
  margin-top: 35px;
}
.rsce_textbg .inner .background {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  -moz-object-fit: contain;
  -webkit-object-fit: contain;
  -o-object-fit: contain;
  -ms-object-fit: contain;
  object-fit: contain;
  -moz-object-position: center center;
  -webkit-object-position: center center;
  -o-object-position: center center;
  -ms-object-position: center center;
  object-position: center center;
  font-family: "object-fit:contain; object-position:center center;";
  pointer-events: none;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: left;
  font-family: 'GeneralSans-Bold';
  font-weight: 700;
  font-size: 300px;
  line-height: 0.83333333;
  text-transform: uppercase;
  color: #f5f5b3;
  hyphens: auto;
  overflow: visible;
  /*.mobileAndTablet({
				font-size:40vw;
				br {
					display:none!important;
				}
			});*/
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_textbg .inner .background {
    font-size: 270px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_textbg .inner .background {
    font-size: 240px;
  }
}
.rsce_textbg .inner .background text {
  font-family: 'GeneralSans-Bold';
  font-weight: 700;
  font-size: 300px;
  line-height: 0.83333333;
  text-transform: uppercase;
  fill: #f5f5b3;
}

.rsce_form_contact.mode_default {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 66px;
  row-gap: 0;
}
@media screen and (max-width: 599px) {
  .rsce_form_contact.mode_default {
    grid-template-columns: auto;
    row-gap: 40px;
  }
  .rsce_form_contact.mode_default .left,
  .rsce_form_contact.mode_default .right {
    width: 100%;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .rsce_form_contact.mode_default {
    column-gap: 30px;
  }
}
.rsce_form_contact.mode_default .left .crumb {
  display: inline-block;
  font-family: 'GeneralSans-Semibold';
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  background-color: #dddc03;
  padding: 0 10px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_form_contact.mode_default .left .crumb {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_form_contact.mode_default .left .crumb {
    font-size: 18px;
  }
}
.rsce_form_contact.mode_default .left .headline {
  font-family: 'GeneralSans-Semibold';
  font-weight: 600;
  font-size: 65px;
  line-height: 1.15384615;
  color: #3e2682;
  margin: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_form_contact.mode_default .left .headline {
    font-size: 58.5px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_form_contact.mode_default .left .headline {
    font-size: 52px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .rsce_form_contact.mode_default .left .headline {
    font-size: 45px;
  }
}
@media screen and (max-width: 599px) {
  .rsce_form_contact.mode_default .left .headline {
    font-size: 35px;
  }
}
.rsce_form_contact.mode_default .right .ce_form .submit-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-content: center;
  align-items: center;
  column-gap: 18px;
  row-gap: 20px;
  margin-top: 30px;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .rsce_form_contact.mode_default .right .ce_form .submit-wrap {
    grid-template-columns: auto;
  }
}
.rsce_form_contact.mode_default .right .ce_form .submit-wrap .widget {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .rsce_form_contact.mode_default .right .ce_form .submit-wrap {
    grid-template-columns: auto;
    row-gap: 18px;
  }
  .rsce_form_contact.mode_default .right .ce_form .submit-wrap .widget.widget-submit {
    text-align: center;
  }
}
.rsce_form_contact.mode_default .right .ce_form .widget.mandatory:before {
  content: "*";
  position: absolute;
  top: 2px;
  right: 7px;
  z-index: 2;
  font-family: 'GeneralSans-Medium';
  font-weight: 500;
  font-size: 15px;
  color: #707070;
}
.rsce_form_contact.mode_default .right .ce_form .widget.mandatory label .mandatory {
  display: none;
}
.rsce_form_contact.mode_default .right .ce_form .widget.mandatory.widget-checkbox:before,
.rsce_form_contact.mode_default .right .ce_form .widget.mandatory.widget-radio:before {
  display: none;
}
.rsce_form_contact.mode_default .right .ce_form .widget.mandatory.widget-checkbox label .mandatory,
.rsce_form_contact.mode_default .right .ce_form .widget.mandatory.widget-radio label .mandatory {
  display: inline;
}
.rsce_form_contact.mode_default .right .ce_form .ajaxconfirm.message {
  font-size: 20px;
  line-height: normal;
}

#cookiebar {
  position: fixed;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 8px 16px;
  text-align: center;
  color: #0f0921;
  line-height: 2;
  z-index: 99;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: table;
}
@media screen and (max-width: 650px) {
  #cookiebar {
    display: block;
  }
}
#cookiebar.top {
  top: 0 !important;
}
#cookiebar.bottom {
  bottom: 0 !important;
  border-top: 1px solid #d3d3d3;
}
#cookiebar.top #cookiebar-desc,
#cookiebar.bottom #cookiebar-desc,
#cookiebar.top .button-container,
#cookiebar.bottom .button-container {
  display: table-cell;
  vertical-align: middle;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 650px) {
  #cookiebar.top #cookiebar-desc,
  #cookiebar.bottom #cookiebar-desc,
  #cookiebar.top .button-container,
  #cookiebar.bottom .button-container {
    display: block;
  }
}
#cookiebar.top .button-container,
#cookiebar.bottom .button-container {
  padding-left: 10px;
  text-align: right;
  white-space: nowrap;
}
@media screen and (min-width: 1200px) {
  #cookiebar.top .button-container,
  #cookiebar.bottom .button-container {
    text-align: left;
  }
}
@media screen and (max-width: 650px) {
  #cookiebar.top .button-container,
  #cookiebar.bottom .button-container {
    text-align: center;
    margin-top: 10px;
  }
}
#cookiebar.top .button-container button,
#cookiebar.bottom .button-container button {
  height: 26px;
  padding: 0 12px;
  border: none;
  background-color: #32B8D2;
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  line-height: 26px;
  display: inline-block !important;
}
#cookiebar.top #cookiebar-desc,
#cookiebar.bottom #cookiebar-desc {
  padding-right: 10px;
}
#cookiebar.top #cookiebar-desc a,
#cookiebar.bottom #cookiebar-desc a {
  color: #32B8D2;
  text-decoration: underline;
}
#cookiebar.top #cookiebar-desc a:hover,
#cookiebar.bottom #cookiebar-desc a:hover {
  text-decoration: none;
}
#cookiebar.popup {
  display: none;
  padding: 0;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(50, 50, 50, 0.85);
  border: 0;
  -webkit-transition: all none ease-out;
  -moz-transition: all none ease-out;
  transition: all none ease-out;
}
#cookiebar.popup .popupInner {
  background-color: #fff;
  color: #0f0921;
  border-radius: 10px;
  position: absolute;
  padding: 40px 15px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 2;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.24);
  width: 500px;
  max-width: 100%;
  font-size: 18px;
  text-align: left;
  visibility: hidden;
  /* max-height:85%; overflow-y:auto; */
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #cookiebar.popup .popupInner {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  #cookiebar.popup .popupInner {
    font-size: 18px;
  }
}
#cookiebar.popup .popupInner.relative {
  position: relative;
  top: auto;
  left: auto;
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
#cookiebar.popup .popupInner .title {
  text-align: center;
  color: #999999;
  font-size: 15px;
  line-height: 1.66666667;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-weight: 400;
  margin-bottom: 20px;
}
#cookiebar.popup .popupInner #cookiebar-desc,
#cookiebar.popup .popupInner .cookiebar-desc {
  text-align: center;
  font-size: 12px;
  line-height: 1.5625;
  letter-spacing: 0.015em;
  color: #0f0921;
  margin-top: 10px;
}
@media screen and (max-width: 1023px) {
  #cookiebar.popup .popupInner #cookiebar-desc,
  #cookiebar.popup .popupInner .cookiebar-desc {
    line-height: 1.2;
  }
}
#cookiebar.popup .popupInner #cookiebar-desc a,
#cookiebar.popup .popupInner .cookiebar-desc a {
  display: inline-block;
  vertical-align: middle;
  color: #969696;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: underline;
}
#cookiebar.popup .popupInner #cookiebar-desc a:hover,
#cookiebar.popup .popupInner .cookiebar-desc a:hover {
  text-decoration: none;
}
#cookiebar.popup .popupInner #cookiebar-desc svg,
#cookiebar.popup .popupInner .cookiebar-desc svg {
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  cursor: pointer;
  margin-left: 5px;
}
#cookiebar.popup .popupInner #cookiebar-desc svg path,
#cookiebar.popup .popupInner .cookiebar-desc svg path {
  fill: #969696;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#cookiebar.popup .popupInner #cookiebar-desc svg:hover path,
#cookiebar.popup .popupInner .cookiebar-desc svg:hover path {
  fill: #2fd566;
}
#cookiebar.popup .popupInner .what_are_cookies_trigger {
  text-align: center;
  font-size: 16px;
  line-height: 1.5625;
  letter-spacing: 0.015em;
  color: #0f0921;
  margin-top: 10px;
}
#cookiebar.popup .popupInner .what_are_cookies_trigger a {
  display: inline-block;
  vertical-align: middle;
  color: #969696;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: inherit;
  line-height: inherit;
  text-decoration: none;
}
#cookiebar.popup .popupInner .what_are_cookies_trigger a svg {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
#cookiebar.popup .popupInner .what_are_cookies_trigger a svg path {
  fill: #969696;
}
#cookiebar.popup .popupInner .what_are_cookies_trigger a span {
  display: inline-block;
  vertical-align: middle;
}
#cookiebar.popup .popupInner .what_are_cookies_trigger a.active {
  color: #000;
}
#cookiebar.popup .popupInner .what_are_cookies_trigger a.active svg {
  display: none;
}
#cookiebar.popup .popupInner .what_are_cookies_trigger a.active svg path {
  fill: #000;
}
#cookiebar.popup .popupInner .what_are_cookies {
  font-size: 14px;
  line-height: 1.2;
  color: inherit;
  max-height: 200px;
  overflow: auto;
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
#cookiebar.popup .popupInner .what_are_cookies::-webkit-scrollbar {
  display: none;
}
#cookiebar.popup .popupInner .what_are_cookies .headline-cookie {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}
#cookiebar.popup .popupInner .cookie-settings-table {
  display: table;
  width: 100%;
  margin-top: 20px;
}
#cookiebar.popup .popupInner .cookie-settings-table li {
  display: table-row;
}
#cookiebar.popup .popupInner .cookie-settings-table li .left,
#cookiebar.popup .popupInner .cookie-settings-table li .right {
  display: table-cell;
  vertical-align: top;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#cookiebar.popup .popupInner .cookie-settings-table li .left {
  padding-right: 10px;
  vertical-align: middle;
}
#cookiebar.popup .popupInner .cookie-settings-table li .right {
  padding-left: 10px;
  width: 100%;
}
#cookiebar.popup .popupInner .cookie-settings-table li .right p {
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
#cookiebar.popup .popupInner .cookie-settings-table li .right > label {
  position: relative;
  display: block;
  margin-bottom: 0;
  background-color: #e5e5e5;
  border-radius: 17px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px 20px;
  cursor: pointer;
}
#cookiebar.popup .popupInner .cookie-settings-table li .right > label svg {
  position: absolute;
  right: 20px;
  top: 25px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#cookiebar.popup .popupInner .cookie-settings-table li .right > label > p {
  display: none;
  height: 100px;
  overflow: auto;
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
#cookiebar.popup .popupInner .cookie-settings-table li .right > label > p::-webkit-scrollbar {
  display: none;
}
#cookiebar.popup .popupInner .cookie-settings-table li .right > label.open svg {
  transform: rotate(180deg);
}
#cookiebar.popup .popupInner .cookie-settings-table li:last-child .left,
#cookiebar.popup .popupInner .cookie-settings-table li:last-child .right {
  padding-top: 20px;
}
#cookiebar.popup .popupInner .cookie-settings-table .onoffswitch {
  position: relative;
  width: 69px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
#cookiebar.popup .popupInner .cookie-settings-table .onoffswitch .onoffswitch-checkbox,
#cookiebar.popup .popupInner .cookie-settings-table .onoffswitch .icheckbox {
  display: none;
}
#cookiebar.popup .popupInner .cookie-settings-table .onoffswitch .onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #E3E3E3;
  border-radius: 36px;
}
#cookiebar.popup .popupInner .cookie-settings-table .onoffswitch .onoffswitch-label .onoffswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
}
#cookiebar.popup .popupInner .cookie-settings-table .onoffswitch .onoffswitch-label .onoffswitch-inner:before,
#cookiebar.popup .popupInner .cookie-settings-table .onoffswitch .onoffswitch-label .onoffswitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 26px;
  padding: 0;
  line-height: 26px;
  font-size: 14px;
  color: white;
  font-family: Trebuchet, Arial, sans-serif;
  font-weight: bold;
  box-sizing: border-box;
}
#cookiebar.popup .popupInner .cookie-settings-table .onoffswitch .onoffswitch-label .onoffswitch-inner:before {
  content: "Ein";
  padding-left: 8px;
  background-color: #5CB85C;
  color: #FFFFFF;
}
#cookiebar.popup .popupInner .cookie-settings-table .onoffswitch .onoffswitch-label .onoffswitch-inner:after {
  content: "Aus";
  padding-right: 8px;
  background-color: #FFFFFF;
  color: #666666;
  text-align: right;
}
#cookiebar.popup .popupInner .cookie-settings-table .onoffswitch .onoffswitch-label .onoffswitch-inner.lang_en:before {
  content: "On";
}
#cookiebar.popup .popupInner .cookie-settings-table .onoffswitch .onoffswitch-label .onoffswitch-inner.lang_en:after {
  content: "Off";
}
#cookiebar.popup .popupInner .cookie-settings-table .onoffswitch .onoffswitch-switch {
  display: block;
  width: 20px;
  margin: 3px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 39px;
  border: 1px solid #E3E3E3;
  border-radius: 36px;
  transition: all 0.3s ease-in 0s;
}
#cookiebar.popup .popupInner .cookie-settings-table .onoffswitch.checked .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}
#cookiebar.popup .popupInner .cookie-settings-table .onoffswitch.checked .onoffswitch-label .onoffswitch-switch {
  right: 0px;
}
#cookiebar.popup .popupInner .cookie-settings-table .onoffswitch.readonly .onoffswitch-label {
  cursor: not-allowed;
}
#cookiebar.popup .popupInner .cookie-settings-table .onoffswitch.readonly .onoffswitch-label .onoffswitch-inner:before {
  background-color: #969696;
}
#cookiebar.popup .popupInner .cookie-settings-table li.toggle-on .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}
#cookiebar.popup .popupInner .cookie-settings-table li.toggle-on .onoffswitch-label .onoffswitch-switch {
  right: 0px;
}
#cookiebar.popup .popupInner .cookie-settings-table.mobile_view .left {
  display: none;
}
#cookiebar.popup .popupInner .cookie-settings-table.mobile_view .right label .onoffswitch,
#cookiebar.popup .popupInner .cookie-settings-table.mobile_view .right label strong {
  display: inline-block;
  vertical-align: middle;
}
#cookiebar.popup .popupInner .cookie-settings-table.mobile_view .right label strong {
  margin-left: 10px;
}
#cookiebar.popup .popupInner .cookie-settings-table.mobile_view .right label > p {
  margin-top: 10px;
}
#cookiebar.popup .popupInner .button-container {
  display: block;
  text-align: center;
  font-size: 0;
  line-height: 0;
  margin-top: 20px;
}
#cookiebar.popup .popupInner .button-container .accept,
#cookiebar.popup .popupInner .button-container .refuse,
#cookiebar.popup .popupInner .button-container .save {
  display: inline-block;
  min-width: 251px;
  padding: 0 20px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 50px;
  border: 1px solid #e5e5e5;
  border-radius: 15px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  text-transform: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
@media screen and (max-width: 610px) {
  #cookiebar.popup .popupInner .button-container .accept,
  #cookiebar.popup .popupInner .button-container .refuse,
  #cookiebar.popup .popupInner .button-container .save {
    min-width: 150px;
  }
}
@media screen and (max-width: 410px) {
  #cookiebar.popup .popupInner .button-container .accept,
  #cookiebar.popup .popupInner .button-container .refuse,
  #cookiebar.popup .popupInner .button-container .save {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 410px) {
  #cookiebar.popup .popupInner .button-container {
    /*button {
						&:first-child {
							border-bottom-left-radius:0; border-bottom-right-radius:0; border-bottom:0;
						}
						&:last-child {
							border-top-left-radius:0; border-top-right-radius:0;
						}
					}*/
  }
}
#cookiebar.popup .popupInner .button-container .accept {
  display: block;
  color: #fff;
  margin: 0 auto;
  background-color: #2fd566;
  border-color: #2fd566;
}
#cookiebar.popup .popupInner .button-container .accept:hover {
  color: #2fd566;
  background-color: transparent;
}
#cookiebar.popup .popupInner .button-container .save {
  display: block;
  margin: 10px auto 0 auto;
  color: #0f0921;
  background-color: #fff;
  font-size: 16px;
  line-height: 40px;
}
#cookiebar.popup .popupInner .button-container .save:hover {
  color: #0f0921;
  background-color: #e5e5e5;
}
#cookiebar.popup .popupInner .button-container .refuse {
  color: #0f0921;
  background-color: #fff;
  margin-right: 20px;
}
#cookiebar.popup .popupInner .button-container .refuse:hover {
  color: #0f0921;
  background-color: #e5e5e5;
}
#cookiebar.popup .popupInner .button-container .change {
  display: inline-block;
  margin-top: 10px;
  color: #0f0921;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: inherit;
  line-height: normal;
  text-decoration: underline;
}
#cookiebar.popup .popupInner .button-container .change:hover {
  text-decoration: none;
}
#cookiebar.popup .popupInner .cookie-settings .button-container {
  margin-top: 25px;
}
body.openPrivacyPopupRelative,
body.openPrivacyPopupAbsolute {
  /*header, #container, #footer {
		-moz-filter:blur(5px);
		-webkit-filter:blur(5px);
		-o-filter:blur(5px);
		-ms-filter:blur(5px);
		filter:blur(5px);
	}*/
}
body.openPrivacyPopupRelative,
body.openPrivacyPopupAbsolute {
  overflow: hidden;
}
body.openPrivacyPopupRelative .cookiebar-extended {
  overflow: auto;
}
body.openPrivacyPopupRelative .cookiebar-extended .popupInner {
  position: relative;
  top: 0;
  left: auto;
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  display: block;
  padding: 40px 40px;
}

.rsce_stickybuttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  justify-content: center;
  align-items: center;
}
.rsce_stickybuttons .ansprechperson_stickybutton {
  position: relative;
  text-decoration: none;
  width: auto;
  height: 45px;
  border-radius: 100%;
  background-color: #3e2682;
  aspect-ratio: 1/1;
}
body.safari .rsce_stickybuttons .ansprechperson_stickybutton {
  width: 45px;
}
.rsce_stickybuttons .ansprechperson_stickybutton figure,
.rsce_stickybuttons .ansprechperson_stickybutton .info {
  display: none;
}
.rsce_stickybuttons .ansprechperson_stickybutton:after {
  content: "";
  display: block;
  width: 20px;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url("/files/theme/i/icons/phone-yellow.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
body.safari .rsce_stickybuttons .ansprechperson_stickybutton:after {
  height: 20px;
}
.rsce_stickybuttons .ansprechperson_stickybutton:hover {
  display: flex;
  border-radius: 23px;
  aspect-ratio: auto;
  padding-left: 40.5px;
  padding-right: 23px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body.safari .rsce_stickybuttons .ansprechperson_stickybutton:hover {
  width: auto;
}
.rsce_stickybuttons .ansprechperson_stickybutton:hover:after {
  display: none;
}
.rsce_stickybuttons .ansprechperson_stickybutton:hover figure {
  display: block;
  width: 65px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 100%;
  padding: 7px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #dddc03;
  position: absolute;
  top: 50%;
  left: 0;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
body.safari .rsce_stickybuttons .ansprechperson_stickybutton:hover figure {
  height: 65px;
}
.rsce_stickybuttons .ansprechperson_stickybutton:hover figure img {
  display: block;
  width: 100%;
  height: 100%;
  -moz-object-fit: cover;
  -webkit-object-fit: cover;
  -o-object-fit: cover;
  -ms-object-fit: cover;
  object-fit: cover;
  -moz-object-position: center center;
  -webkit-object-position: center center;
  -o-object-position: center center;
  -ms-object-position: center center;
  object-position: center center;
  font-family: "object-fit:cover; object-position:center center;";
  border-radius: 100%;
}
.rsce_stickybuttons .ansprechperson_stickybutton:hover .info {
  display: block;
  align-self: center;
}
.rsce_stickybuttons .ansprechperson_stickybutton:hover .info .name {
  font-family: 'GeneralSans-Semibold';
  font-weight: 600;
  font-size: 13px;
  line-height: 1.23076923;
  color: #fff;
  margin: 0;
}
.rsce_stickybuttons .ansprechperson_stickybutton:hover .info .phone {
  font-family: 'GeneralSans-Semibold';
  font-weight: 600;
  font-size: 13px;
  line-height: 1.23076923;
  color: #dddc03;
}
.rsce_stickybuttons .mod_watchlistRedirector a {
  position: relative;
  display: block;
  width: 45px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: #3e2682;
  color: #dddc03;
}
body.safari .rsce_stickybuttons .mod_watchlistRedirector a {
  height: 45px;
}
.rsce_stickybuttons .mod_watchlistRedirector a .label {
  display: none;
}
.rsce_stickybuttons .mod_watchlistRedirector a svg,
.rsce_stickybuttons .mod_watchlistRedirector a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.rsce_stickybuttons .mod_watchlistRedirector a svg {
  overflow: visible;
}
.rsce_stickybuttons .mod_watchlistRedirector a svg path {
  fill: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.rsce_stickybuttons .mod_watchlistRedirector a .count {
  position: absolute;
  top: 0;
  right: 0;
  -moz-transform: translate(23.33%, -15.33%);
  -webkit-transform: translate(23.33%, -15.33%);
  -o-transform: translate(23.33%, -15.33%);
  -ms-transform: translate(23.33%, -15.33%);
  transform: translate(23.33%, -15.33%);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
  width: 20px;
  height: auto;
  line-height: 20px;
  aspect-ratio: 1/1;
  font-size: 11px;
  background-color: #dddc03;
  color: #3e2682;
  text-align: center;
  border-radius: 100%;
  padding: 0 5px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body.safari .rsce_stickybuttons .mod_watchlistRedirector a .count {
  height: 20px;
}
.rsce_stickybuttons .mod_watchlistRedirector a.active .count {
  opacity: 1;
}
.rsce_stickybuttons .mod_watchlistRedirector a.active svg path {
  fill: #dddc03;
}

