/** grid presets **/
.d_100 {grid-template-columns: 100%;}
.d_25_25_25_25 {grid-template-columns: 25% 25% 25% 25%;}
.d_33_33_33 {grid-template-columns: 33.3333% 33.3333% 33.3333%;}
.d_50_25_25 {grid-template-columns: 50% 25% 25%;}
.d_25_50_25 {grid-template-columns: 25% 50% 25%;}
.d_25_25_50 {grid-template-columns: 25% 25% 50%;}
.d_40_30_30 {grid-template-columns: 40% 30% 30%;}
.d_30_40_30 {grid-template-columns: 30% 40% 30%;}
.d_30_30_40 {grid-template-columns: 30% 30% 40%;}
.d_20_40_40 {grid-template-columns: 20% 40% 40%;}
.d_40_20_40 {grid-template-columns: 40% 20% 40%;}
.d_40_40_20 {grid-template-columns: 40% 40% 20%;}
.d_50_50 {grid-template-columns: 50% 50%;}
.d_85_15 {grid-template-columns: 85% 15%;}
.d_15_85 {grid-template-columns: 15% 85%;}
.d_80_20 {grid-template-columns: 80% 20%;}
.d_20_80 {grid-template-columns: 20% 80%;}
.d_75_25 {grid-template-columns: 75% 25%;}
.d_25_75 {grid-template-columns: 25% 75%;}
.d_70_30 {grid-template-columns: 70% 30%;}
.d_30_70 {grid-template-columns: 30% 70%;}
.d_66_33 {grid-template-columns: 66.6667% 33.3333%;}
.d_33_66 {grid-template-columns: 33.3333% 66.6667%;}
.d_60_40 {grid-template-columns: 60% 40%;}
.d_40_60 {grid-template-columns: 40% 60%;}
@media only screen and (min-width : 768px) and (max-width : 1024px)
{
	.t_100 {grid-template-columns: 100%;}
	.t_50_50 {grid-template-columns: 50% 50%;}
}
@media only screen and (max-width: 767px)
{
	.m_100 {grid-template-columns: 100%;}
	.m_50_50 {grid-template-columns: 50% 50%;}
}

/** grid **/
.autogrid_grid {display: grid; margin-left: -15px; margin-right: -15px;}
.autogrid_grid .column {padding-left: 15px; padding-right: 15px;}

/** grid gutter **/
.autogrid_grid.gutter_none {margin-left: 0; margin-right: 0;}
.autogrid_grid.gutter_none > .column {padding-left: 0; padding-right: 0;}
.autogrid_grid.gutter_s {margin-left: -15px; margin-right: -15px;}
.autogrid_grid.gutter_s > .column {padding-left: 15px; padding-right: 15px;}
.autogrid_grid.gutter_m {margin-left: -30px; margin-right: -30px;}
.autogrid_grid.gutter_m > .column {padding-left: 30px; padding-right: 30px;}
.autogrid_grid.gutter_l {margin-left: -40px; margin-right: -40px;}
.autogrid_grid.gutter_l > .column {padding-left: 40px; padding-right: 40px;}

/** grid same_height **/
.autogrid_grid.same_height > .column > .attributes {height: 100%;}

/** grid attributes **/
.autogrid_grid .column .attributes {background-size: cover;}
.autogrid_grid .column .attributes.p-xl {padding: 200px 40px 200px 40px;}
.autogrid_grid .column .attributes.p-l {padding: 160px 40px 160px 40px;}
.autogrid_grid .column .attributes.p-m {padding: 115px 40px 115px 40px;}
.autogrid_grid .column .attributes.p-s {padding: 80px 40px 80px 40px;}
.autogrid_grid .column .attributes.p-xs {padding: 40px 40px 40px 40px;}

/** flex row **/
.autogrid_wrapper, .autogrid_row {margin-left: -15px; margin-right: -15px; display: flex; flex-wrap: wrap; box-sizing: border-box;}

/** flex column **/
.autogrid, .autogrid_row .column {padding-left: 15px; padding-right: 15px; flex-basis: 1; flex-grow: 1;  width: 100%; position: relative; box-sizing: border-box;}

/** flex clearing **/
.autogrid_clear {flex: 0 0 100%; height: 0;}

/** flex classes **/
.col_1 		{flex: 0 0 calc((100% / 12) * 1); max-width: calc((100% / 12) * 1);}
.col_2 		{flex: 0 0 calc((100% / 12) * 2); max-width: calc((100% / 12) * 2);}
.col_3 		{flex: 0 0 calc((100% / 12) * 3); max-width: calc((100% / 12) * 3);}
.col_4 		{flex: 0 0 calc((100% / 12) * 4); max-width: calc((100% / 12) * 4);}
.col_5 		{flex: 0 0 calc((100% / 12) * 5); max-width: calc((100% / 12) * 5);}
.col_6 		{flex: 0 0 calc((100% / 12) * 6); max-width: calc((100% / 12) * 6);}
.col_7 		{flex: 0 0 calc((100% / 12) * 7); max-width: calc((100% / 12) * 7);}
.col_8 		{flex: 0 0 calc((100% / 12) * 8); max-width: calc((100% / 12) * 8);}
.col_9 		{flex: 0 0 calc((100% / 12) * 9); max-width: calc((100% / 12) * 9);}
.col_10 	{flex: 0 0 calc((100% / 12) * 10); max-width: calc((100% / 12) * 10);}
.col_11 	{flex: 0 0 calc((100% / 12) * 11); max-width: calc((100% / 12) * 11);}
.col_12 	{flex: 0 0 calc((100% / 12) * 12); max-width: calc((100% / 12) * 12);}

/** flex gutter **/
.autogrid_wrapper.gutter_none, .autogrid_row.gutter_none {margin-left: 0; margin-right: 0;}
.autogrid_wrapper.gutter_none > div, .autogrid_row.gutter_none > div {padding-left: 0; padding-right: 0;}
.autogrid_wrapper.gutter_s, .autogrid_row.gutter_s {margin-left: -15px; margin-right: -15px;}
.autogrid_wrapper.gutter_s > div, .autogrid_row.gutter_s > div {padding-left: 15px; padding-right: 15px;}
.autogrid_wrapper.gutter_m, .autogrid_row.gutter_m {margin-left: -30px; margin-right: -30px;}
.autogrid_wrapper.gutter_m > div, .autogrid_row.gutter_m > div {padding-left: 30px; padding-right: 30px;}
.autogrid_wrapper.gutter_l, .autogrid_row.gutter_l {margin-left: -40px; margin-right: -40px;}
.autogrid_wrapper.gutter_l > div, .autogrid_row.gutter_l > div {padding-left: 40px; padding-right: 40px;}

/* flex order */
.order_1 {order: 1;}
.order_2 {order: 2;}
.order_3 {order: 3;}
.order_4 {order: 4;}
.order_5 {order: 5;}
.order_6 {order: 6;}

/** ag fallback classes **/
.full			{flex: 0 0 100%;}
.one_half 		{flex: 0 0 calc(100% / 2);}
.one_third 		{flex: 0 0 calc(100% / 3);}
.one_fourth		{flex: 0 0 calc(100% / 4);}
.one_fifth		{flex: 0 0 calc(100% / 5);}
.one_sixth		{flex: 0 0 calc(100% / 6);}
.two_third		{flex: 0 0 calc((100% / 3) * 2);}
.two_fourth		{flex: 0 0 calc((100% / 4) * 2);}
.three_fourth	{flex: 0 0 calc((100% / 4) * 3);}
.two_fifth		{flex: 0 0 calc((100% / 5) * 2);}
.three_fifth	{flex: 0 0 calc((100% / 5) * 3);}
.four_fifth		{flex: 0 0 calc((100% / 5) * 4);}
.two_sixth		{flex: 0 0 calc((100% / 6) * 2);}
.three_sixth	{flex: 0 0 calc((100% / 6) * 3);}
.four_sixth		{flex: 0 0 calc((100% / 6) * 4);}
.five_sixth		{flex: 0 0 calc((100% / 6) * 5);}

/** offset**/
.offset_col_1 	{margin-left: calc((100% / 12) * 1);}
.offset_col_2 	{margin-left: calc((100% / 12) * 2);}
.offset_col_3 	{margin-left: calc((100% / 12) * 3);}
.offset_col_4 	{margin-left: calc((100% / 12) * 4);}
.offset_col_5 	{margin-left: calc((100% / 12) * 5);}
.offset_col_6 	{margin-left: calc((100% / 12) * 6);}
.offset_col_7 	{margin-left: calc((100% / 12) * 7);}
.offset_col_8 	{margin-left: calc((100% / 12) * 8);}
.offset_col_9 	{margin-left: calc((100% / 12) * 9);}
.offset_col_10 	{margin-left: calc((100% / 12) * 10);}
.offset_col_11 	{margin-left: calc((100% / 12) * 11);}

/** align **/
.autogrid_grid .column.align_left_top {text-align: left;}
.autogrid_grid .column.align_left_center {text-align: left; align-self: center;}
.autogrid_grid .column.align_left_bottom {text-align: left; align-self: flex-end;}
.autogrid_grid .column.align_center_top {text-align: center;}
.autogrid_grid .column.align_center_center {text-align: center; align-self: center;}
.autogrid_grid .column.align_center_bottom {text-align: center; align-self: flex-end;}
.autogrid_grid .column.align_right_top {text-align: right;}
.autogrid_grid .column.align_right_center {text-align: right; align-self: center;}
.autogrid_grid .column.align_right_bottom {text-align: right; align-self: flex-end;}

/** align + same-height **/
.autogrid_grid.same_height > .column {align-self: unset;}
.autogrid_grid.same_height > .column > .attributes {display: flex; flex-wrap: wrap;}
.autogrid_grid.same_height > .column > .attributes > .same-height-wrap {width: 100%; flex: 0 0 100%;}
.autogrid_grid.same_height > .column.align_left_center > .attributes {align-items: center;}
.autogrid_grid.same_height > .column.align_left_bottom > .attributes {align-items: flex-end;}
.autogrid_grid.same_height > .column.align_center_center > .attributes {align-items: center;}
.autogrid_grid.same_height > .column.align_center_bottom > .attributes {align-items: flex-end;}
.autogrid_grid.same_height > .column.align_right_center > .attributes {align-items: center;}
.autogrid_grid.same_height > .column.align_right_bottom > .attributes {align-items: flex-end;}

/** background-image as <img> in mobile **/
.autogrid_grid .column > .attributes .image_mob {display: none;}

/** tablets **/
@media only screen and (min-width : 768px) and (max-width : 1024px) {
	.col_1_t 	{flex: 0 0 calc((100% / 12) * 1); max-width: calc((100% / 12) * 1);}
	.col_2_t 	{flex: 0 0 calc((100% / 12) * 2); max-width: calc((100% / 12) * 2);}
	.col_3_t 	{flex: 0 0 calc((100% / 12) * 3); max-width: calc((100% / 12) * 3);}
	.col_4_t 	{flex: 0 0 calc((100% / 12) * 4); max-width: calc((100% / 12) * 4);}
	.col_5_t 	{flex: 0 0 calc((100% / 12) * 5); max-width: calc((100% / 12) * 5);}
	.col_6_t 	{flex: 0 0 calc((100% / 12) * 6); max-width: calc((100% / 12) * 6);}
	.col_7_t 	{flex: 0 0 calc((100% / 12) * 7); max-width: calc((100% / 12) * 7);}
	.col_8_t 	{flex: 0 0 calc((100% / 12) * 8); max-width: calc((100% / 12) * 8);}
	.col_9_t 	{flex: 0 0 calc((100% / 12) * 9); max-width: calc((100% / 12) * 9);}
	.col_10_t 	{flex: 0 0 calc((100% / 12) * 10); max-width: calc((100% / 12) * 10);}
	.col_11_t 	{flex: 0 0 calc((100% / 12) * 11); max-width: calc((100% / 12) * 11);}
	.col_12_t 	{flex: 0 0 calc((100% / 12) * 12); max-width: calc((100% / 12) * 12);}
	.order_1_t 	{order: 1;}
	.order_2_t 	{order: 2;}
	.order_3_t 	{order: 3;}
	.order_4_t 	{order: 4;}
	.order_5_t 	{order: 5;}
	.order_6_t 	{order: 6;}
}

/** phones **/
@media only screen and (max-width: 767px) {
	[class*="col_"], .one_half, .one_third, .one_fourth, .one_fifth, .one_sixth, .two_third, .two_fourth, .three_fourth, .two_fifth, .three_fifth, .four_fifth, .two_sixth, .three_sixth .four_sixth, .five_sixth {flex: 0 0 100%; max-width: none;}
	.column[class*="col_"], .autogrid_grid .column {padding-left: 0!important; padding-right: 0!important; margin-bottom: 25px;}
	.column[class*="offset_"], .autogrid[class*="offset_"], .autogrid_grid[class*="offset_"] {margin-left: 0;}
	.autogrid_wrapper, .autogrid_row, .autogrid_grid {margin-left: 0!important; margin-right: 0!important;}
	.autogrid_grid .column .attributes.has-image.empty > .image_mob,
	.autogrid_grid .column .attributes.has-image.empty > .same-height-wrap > .image_mob {display: block;}
	.autogrid_grid .column .attributes.has-image.empty {background: none!important;}
	.col_1_m 		{flex: 0 0 calc((100% / 12) * 1); max-width: calc((100% / 12) * 1);}
	.col_2_m 		{flex: 0 0 calc((100% / 12) * 2); max-width: calc((100% / 12) * 2);}
	.col_3_m 		{flex: 0 0 calc((100% / 12) * 3); max-width: calc((100% / 12) * 3);}
	.col_4_m 		{flex: 0 0 calc((100% / 12) * 4); max-width: calc((100% / 12) * 4);}
	.col_5_m 		{flex: 0 0 calc((100% / 12) * 5); max-width: calc((100% / 12) * 5);}
	.col_6_m 		{flex: 0 0 calc((100% / 12) * 6); max-width: calc((100% / 12) * 6);}
	.col_7_m 		{flex: 0 0 calc((100% / 12) * 7); max-width: calc((100% / 12) * 7);}
	.col_8_m 		{flex: 0 0 calc((100% / 12) * 8); max-width: calc((100% / 12) * 8);}
	.col_9_m 		{flex: 0 0 calc((100% / 12) * 9); max-width: calc((100% / 12) * 9);}
	.col_10_m 	{flex: 0 0 calc((100% / 12) * 10); max-width: calc((100% / 12) * 10);}
	.col_11_m 	{flex: 0 0 calc((100% / 12) * 11); max-width: calc((100% / 12) * 11);}
	.col_12_m 	{flex: 0 0 calc((100% / 12) * 12); max-width: calc((100% / 12) * 12);}
	.order_1_m 	{order: 1;}
	.order_2_m 	{order: 2;}
	.order_3_m 	{order: 3;}
	.order_4_m 	{order: 4;}
	.order_5_m 	{order: 5;}
	.order_6_m 	{order: 6;}
	.autogrid_grid .column .attributes.p-xl,
	.autogrid_grid .column .attributes.p-l,
	.autogrid_grid .column .attributes.p-m,
	.autogrid_grid .column .attributes.p-s,
	.autogrid_grid .column .attributes.p-xs {padding: 20px;}
}

/** Fix for rendering bug in Edge **/
body.edge column[class*="col_"] {flex-basis: 0;}
@media only screen and (max-width: 767px) {body.edge column[class*="col_"] {flex-basis: 100%;}}
/** Fix end **/
#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}
/* customize_fonts.css */
@font-face{font-family: 'Quicksand';  font-style: normal;  font-weight: 300;  src: url('/files/cto_layout/fonts/quicksand-v20-latin-300.eot'); /* IE9 Compat Modes */  src: local(''),       url('/files/cto_layout/fonts/quicksand-v20-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */       url('/files/cto_layout/fonts/quicksand-v20-latin-300.woff2') format('woff2'), /* Super Modern Browsers */       url('/files/cto_layout/fonts/quicksand-v20-latin-300.woff') format('woff'), /* Modern Browsers */       url('/files/cto_layout/fonts/quicksand-v20-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */       url('/files/cto_layout/fonts/quicksand-v20-latin-300.svg#Quicksand') format('svg'); /* Legacy iOS */}@font-face{font-family: 'Quicksand';  font-style: normal;  font-weight: 400;  src: url('/files/cto_layout/fonts/quicksand-v20-latin-regular.eot'); /* IE9 Compat Modes */  src: local(''),       url('/files/cto_layout/fonts/quicksand-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */       url('/files/cto_layout/fonts/quicksand-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */       url('/files/cto_layout/fonts/quicksand-v20-latin-regular.woff') format('woff'), /* Modern Browsers */       url('/files/cto_layout/fonts/quicksand-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */       url('/files/cto_layout/fonts/quicksand-v20-latin-regular.svg#Quicksand') format('svg'); /* Legacy iOS */}@font-face{font-family: 'Quicksand';  font-style: normal;  font-weight: 500;  src: url('/files/cto_layout/fonts/quicksand-v20-latin-500.eot'); /* IE9 Compat Modes */  src: local(''),       url('/files/cto_layout/fonts/quicksand-v20-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */       url('/files/cto_layout/fonts/quicksand-v20-latin-500.woff2') format('woff2'), /* Super Modern Browsers */       url('/files/cto_layout/fonts/quicksand-v20-latin-500.woff') format('woff'), /* Modern Browsers */       url('/files/cto_layout/fonts/quicksand-v20-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */       url('/files/cto_layout/fonts/quicksand-v20-latin-500.svg#Quicksand') format('svg'); /* Legacy iOS */}@font-face{font-family: 'Quicksand';  font-style: normal;  font-weight: 600;  src: url('/files/cto_layout/fonts/quicksand-v20-latin-600.eot'); /* IE9 Compat Modes */  src: local(''),       url('/files/cto_layout/fonts/quicksand-v20-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */       url('/files/cto_layout/fonts/quicksand-v20-latin-600.woff2') format('woff2'), /* Super Modern Browsers */       url('/files/cto_layout/fonts/quicksand-v20-latin-600.woff') format('woff'), /* Modern Browsers */       url('/files/cto_layout/fonts/quicksand-v20-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */       url('/files/cto_layout/fonts/quicksand-v20-latin-600.svg#Quicksand') format('svg'); /* Legacy iOS */}@font-face{font-family: 'Quicksand';  font-style: normal;  font-weight: 700;  src: url('/files/cto_layout/fonts/quicksand-v20-latin-700.eot'); /* IE9 Compat Modes */  src: local(''),       url('/files/cto_layout/fonts/quicksand-v20-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */       url('/files/cto_layout/fonts/quicksand-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */       url('/files/cto_layout/fonts/quicksand-v20-latin-700.woff') format('woff'), /* Modern Browsers */       url('/files/cto_layout/fonts/quicksand-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */       url('/files/cto_layout/fonts/quicksand-v20-latin-700.svg#Quicksand') format('svg'); /* Legacy iOS */}
/* X_customize_themedesigner_lesstext.css */
.mod_article.ol-bg-accent .article-overlay{background: #52843a}body .mm-menu a:hover,body .mm-menu a.active,body .mm-menu a.trail,body .mm-menu .mm-listview > li.mm-selected > a:not(.mm-next),body .mm-menu .mm-listview > li.mm-selected > span,body .mm-menu .mm-listview > li.trail a{background-color: #52843a}.header .mainmenu ul.level_1 li span.ribbon{background: #52843a}.stroke-accent{stroke: #52843a}.fill-accent{fill: #52843a}.ce_swiper-slider-start.style2_dark .swiper-pagination-bullet-active,.ce_swiper-slider-start.style2_dark .swiper-pagination-bullet-active:after,.ce_swiper-slider-start.style2_light .swiper-pagination-bullet-active,.ce_swiper-slider-start.style2_light .swiper-pagination-bullet-active:after{background-color: #52843a}.ce_wrap.bg-hover-accent:hover{background-color: #52843a!important}.ce_hyperlink.btn-accent a{background: #52843a;border-color: #52843a}.ce_hyperlink.btn-accent-outline a{border-color: #52843a;color: #52843a}.txt-color-accent,.txt-color-accent p,.txt-color-accent i,.txt-color-accent a,.txt-color-accent h1,.txt-color-accent h2,.txt-color-accent h3,.txt-color-accent h4,.txt-color-accent h5,.txt-color-accent h6,.txt-color-accent .h1,.txt-color-accent .h2,.txt-color-accent .h3,.txt-color-accent .h4,.txt-color-accent .h5,.txt-color-accent .h6,.txt-color-accent .h1 p,.txt-color-accent .h2 p,.txt-color-accent .h3 p,.txt-color-accent .h4 p,.txt-color-accent .h5 p,.txt-color-accent .h6 p,.txt-color-accent.h1,.txt-color-accent.h2,.txt-color-accent.h3,.txt-color-accent.h4,.txt-color-accent.h5,.txt-color-accent.h6,.txt-color-accent.h1 p,.txt-color-accent.h2 p,.txt-color-accent.h3 p,.txt-color-accent.h4 p,.txt-color-accent.h5 p,.txt-color-accent.h6 p{color: #52843a}.bg-accent{background-color: #52843a}p a{color: #52843a}.divider-v2 h1:after,.divider-v2 h2:after,.divider-v2 h3:after,.divider-v2 h4:after,.dividerv h5:after,.divider-v2 h6:after,h1.divider-v2:after,h2.divider-v2:after,h3.divider-v2:after,h4.divider-v2:after,h5.divider-v2:after,h6.divider-v2:after{background: #52843a}hr.divider_3:before{background: #52843a}hr.divider_3:before{background: #52843a}.divider_4_first{border: 3px solid #52843a}.divider_4_second{background-color: #52843a}.divider_4::after,.divider_4::before{background-color: #52843a}.divider_5 i{color: #52843a}.mainmenu ul ul{border-top: 2px solid #52843a}.header.original .mainmenu ul li a.trail,.header.original .mainmenu ul li a.active,.header.cloned .mainmenu ul li a.trail,.header.cloned .mainmenu ul li a.active{color: #52843a}#top-wrapper.fixed .mainmenu a.active,#top-wrapper.fixed .mainmenu a.trail{color: #52843a}.mainmenu ul ul li a:hover:not(.menuheader):not(.megamenu),.mainmenu ul ul li a.active,.mainmenu ul ul li a.trail:not(.megamenu){background: #52843a!important}body.header-dark .fixed .mainmenu ul li a.trail,body.header-dark .fixed .mainmenu ul li a.active{color: #52843a}.header-light #top-wrapper.fixed .mainmenu a.active,.header-light #top-wrapper.fixed .mainmenu a.trail{color: #52843a}.subnav a{color: #52843a}#nav-open-btn:before{background: #52843a}.ce_table table th{background: #52843a}.ce_tabs .tabs.classic ul li.active,.ce_tabs .tabs.classic ul li:hover{border-color: #52843a}.ce_tabs .tabs.horizontal ul li:hover a,.ce_tabs .tabs.horizontal ul li.active a{background: #52843a}.ce_teambox .image .overlay{background: #52843a}.ce_teambox .email a{color: #52843a}blockquote a{color: #52843a}.header .mod_search .search-content{background: #52843a}.ce_iconbox.version2 i{background: #52843a}.ce_iconbox .link{color: #52843a}.ce_testimonial a{color: #52843a}.ce_accordion .toggler:before{color:#52843a}.mod_calendar th.head{background:#52843a;border-top:1px solid #52843a;border-right:1px solid #52843a;border-left:1px solid #52843a}.mod_calendar th.previous a,.mod_calendar th.next a{background-color:#52843a}.pagination li span.current{background: #52843a}.pagination li a:hover{color: #52843a}.mod_faqpage h3:before{color: #52843a}.mod_search .submit{border: 1px solid #52843a}input:focus,textarea:focus{border:1px solid #52843a}form fieldset legend{background-color:#52843a}input.submit[type="submit"],button.submit[type="submit"]{background: #52843a}input.submit[type="submit"]:hover,button.submit[type="submit"]:hover{background: #52843a}.ce_youtube_background.overlay .YTPOverlay{background-color: #52843a}.label-accent{background: #52843a}.ce_hyperlink a,a.btn{background: #52843a;border-color: #52843a}.ce_hyperlink a.link-white,a.btn.link-white{color: #52843a}.ce_hyperlink a.link-white:hover,a.btn.link-white:hover{background: #52843a}.ce_hyperlink a.outline,a.btn.outline{color: #52843a}.newslist h2,.newslist h2 a{color: #52843a}.newslist .news-left .news-date{background: #52843a}.newsteaser .date{background: #52843a}#portfolio_filter a.selected,#portfolio_filter a:hover{background: #52843a}.ce_chartbar .chart_data{background: #52843a}.color-accent,.color-accent p,.color-accent i,.color-accent h1,.color-accent h2,.color-accent h3,.color-accent h4,.color-accent h5,.color-accent h6,.color-accent a:not(.link-white){color: #52843a}blockquote{border-color: #52843a}.ce_pricetable .pricetable.highlight .title{background: #52843a}.ce_imagebox_v2 .ce_url a{background: #52843a}.ce_gallery .content{background: #52843a}.ce_headertext h1:after,.ce_headertext h2:after,.ce_headertext h3:after,.ce_headertext h4:after,.ce_headertext h5:after,.ce_headertext h6:after{background: #52843a}.ce_countup i{color: #52843a}.newslist-v3 .date{background: #52843a}.ce_bgimage.offset.offset-bg-accent:before{background-color: #52843a}.ce_leadertext.version2 .divider-first{border: 3px solid #52843a}.ce_leadertext.version2 .divider-second{background-color: #52843a}.ce_leadertext.version2 .divider:after,.ce_leadertext.version2 .divider:before{background-color: #52843a}.ce_accordion .toggler i.fa{background: #52843a}.newsteaser_v3 .news-overlay i{background-color: #52843a}.newslist-v3 .subheadline{color: #52843a}.ce_teambox .function{color: #52843a}.ce_tabs .tabs.horizontal-clean ul li.active:after{border-color: #52843a transparent transparent transparent}.subheadline-v2{color: #52843a}.ce_timeline .timeline-item .timeline-item-title{background: #52843a}.ce_portfoliofilter.default a.selected,.ce_portfoliofilter.default a:hover{background: #52843a}.ce_portfoliofilter.only-icon a.selected i:before,.ce_portfoliofilter.only-icon a:hover i:before{background: #52843a;border-color: #52843a}.ce_tabs .tabs.horizontal-clean ul li.active a{color: #52843a}.ce_revolutionslider_hyperlink{background: #52843a;border-color: #52843a}.ce_headline_extended.version2 .divider-first{border-color: #52843a}.ce_headline_extended.version2 .divider:after,.ce_headline_extended.version2 .divider:before,.ce_headline_extended.version2 .divider-second{background-color: #52843a}.mod_portfoliolist .item .linkbar a{background-color: #52843a}.mod_portfoliolist .item .linkbar a:hover{color: #52843a}.mod_portfoliolist .item .subline{background-color: #52843a}form .input-group-addon{background: #52843a;border-color: #52843a}body .picker--focused .picker__day--selected,body .picker__day--selected,body .picker__day--selected:hover,body .picker--focused .picker__day--highlighted,body .picker__day--highlighted:hover,body .picker__day--infocus:hover,body .picker__day--outfocus:hover,body .picker--focused .picker__list-item--highlighted,body .picker__list-item--highlighted:hover,body .picker__list-item:hover{background-color: #52843a}body .picker__list-item--highlighted,body .picker__list-item:hover{border-color: #52843a}.ce_video_background .video-overlay{background-color: #52843a}.ce_text_imagebox.imagebox_version2 .inside,.ce_text_imagebox.imagebox_version3 .inside{background-color: #52843a}#offcanvas-top{background: #52843a}.cookiebar{background: #52843a}#footer a:hover,#bottom .inside a:hover{color: #52843a}.ce_bgimage_content_start.bg-accent .bg_overlay{background: #52843a}.newslist-timeline:before,.newslist-timeline-both h4:before{border-color: #52843a}.ce_divider_extended.version4 span{background: #52843a}.ce_divider_extended.version5{background: #52843a}.ce_linkbox h4{color: #52843a}.body_bottom .mod_search .search-content{background: #52843a}.mod_customcataloglist.cc_immorealty .entry.top_object .cc_immorealty_top{background: #52843a}.mod_customcatalogfilter.immorealty_filter .filter_range .ui-slider-range{background: #52843a}.mod_customcatalogreader.cc_immorealty .property-furnishing li i{color: #52843a}.mod_customcatalogreader.cc_immorealty .price{background: #52843a}.mod_customcataloglist .cc_immorealty_slider .category{background: #52843a}.mod_customcataloglist.cc_immorealty .customelements_notelist input{background-color: #52843a}.mod_customcataloglist.cc_cardealer .item-rightside .item-content-col2{color: #52843a}.mod_customcatalogfilter.cardealer_filter .filter_range .ui-slider-range{background-color: #52843a}.mod_customcatalogreader.cc_cardealer .single-price{color: #52843a}.mod_customcatalogreader.cc_cardealer .single-price strong{background-color: #52843a}.mod_customcataloglist.cc_cardealer .item-highlight-icon{background-color: #52843a}.mod_customcataloglist .cc_cardealer_slider .state{background-color: #52843a}.mod_customcataloglist .cc_cardealer_slider .price strong{color: #52843a}.ce_linkbox a i{background-color: #52843a}.ce_fullscreen_gallery.version3 .bold{background-color: #52843a}form.style2{background: #52843a}.ce_linkbox .ce_linkbox_banner{background-color: #52843a}.custommenu li:hover{background-color: #52843a}.ce_featured_tab li .ce_headline .headline{color: #52843a}.ce_featured_tab li.active{background-color: #52843a}.ce_headerimage.version3 .ce_headline .headline{background: #52843a}.ce_headerimage.version3 .subline{background: #52843a}.mod_portfoliolist_v4 .item a:hover{background: #52843a}.mod_customcatalogteaser.cc_accommodations .entry:hover .item-content{background: #52843a}.ce_revolutionslider_hyperlink.light{color: #52843a}.ce_frame_start.style3 .ce_frame_start_inside{border-color: #52843a}.mod_portfoliolist_teaser_3 .info,.mod_portfoliolist_teaser_3 .info a{color: #52843a}.newsteaser_v7:hover h5{color: #52843a}.ce_divider_extended.version10 svg{fill: #52843a}.cd-horizontal-timeline .filling-line{background-color: #52843a}.cd-horizontal-timeline .events a.older-event::after{border-color: #52843a}.no-touch .cd-horizontal-timeline .events a:hover::after,.cd-horizontal-timeline .events a.selected::after{background-color: #52843a;border-color: #52843a}.mod_portfoliolist_v7 .comments{background-color: #52843a}.mod_portfoliolist_v7 .subline{background-color: #52843a}.mod_portfoliolist_v7 .item:hover .item-bottom a{color: #52843a}.cd-horizontal-timeline .ce_text em{color: #52843a}.mod_eventlist_v2 .title a{color: #52843a}.ce_imagemap .hotspot.small .circle{box-shadow: 0 0 0 5px #52843a}.ce_pricecard.style2.highlight .ce_pricecard_inside{background: #52843a}.mod_eventlist_v3 h4,.mod_eventlist_v3 h4 a{color: #52843a}.mod_eventlist_v3 .meta-info i{color: #52843a}.cd-horizontal-timeline time:before,.cd-horizontal-timeline .location:before{color: #52843a}.cd-horizontal-timeline .more a{background: #52843a}body .mainmenu ul li a:hover:before,body .mainmenu ul li a.trail:before,body .mainmenu ul li a.active:before{background-color: #52843a}.ce_popup_start .popup_close{color: #52843a}.ce_popup_start .ce_popup_content{border-color: #52843a}.mod_eventlist_v4 i.fa-location-arrow{background-color: #52843a}.ce_hyperlink_lightbox_video.hyperlink_color_accent svg polygon{fill: #52843a}.ce_hyperlink_lightbox_video.hyperlink_color_accent svg circle{stroke: #52843a}.mod_portfoliolist_demos .item .overlay{background-color: #52843a}.mod_portfoliolist_demos .item h5:hover{color: #52843a}.ce_iconbox_v3 .ce_iconbox_v3_inside.bg-accent{background-color: #52843a}.ce_iconbox_v3 .ce_iconbox_v3_inside.bg-hover-accent:hover{background-color: #52843a!important}.ce_iconbox_v3 .headline.headline-color-accent{color: #52843a}.ce_iconbox_v3 .subheadline.subheadline-color-accent{color: #52843a}.ce_iconbox_v3 .fonticon.fonticon-color-accent{color: #52843a}.ce_iconbox_v3:hover.text-hover-accent i,.ce_iconbox_v3:hover.text-hover-accent .headline,.ce_iconbox_v3:hover.text-hover-accent .subheadline{color: #52843a!important}.submenu_v2 li a:hover,.submenu_v2 li a.active{color: #52843a}.ce_list.list-style2 li.fa:before{color: #52843a}.ce_list.list-style3 li.fa:before{color: #52843a}.ce_revolutionslider_hyperlink.text-link:after{color: #52843a}.ce_download_small .ce_download_small_inside a:after{color: #52843a}.ce_download_small .ce_download_small_inside a{border-color: #52843a}.ce_imagemap .circle{box-shadow: 0 0 0 4px #52843a}.ce_testimonial_version7 .text_inside:before{background: #52843a}.ce_portfoliofilter.port-filter-style3 a.selected{border-color: #52843a}form.style8 input.submit[type="submit"],form.style8 button.submit[type="submit"]{color: #52843a}.ce_image_text_box .ce_image_text_box_banner{background: #52843a}.ce_image_text_box.version2 a.hyperlink_txt{color: #52843a}.ce_grid_gallery_start li:hover .linktext{color: #52843a}.mod_quickmenu.style2 a{border-color: #52843a;color: #52843a}.mod_customcataloglist.cc_product_catalog .item-inside:hover{border-color: #52843a}.mod_customcatalogteaser.cc_product_catalog .item-highlight-icon{background-color: #52843a}.ce_headline_w_buttons.style1 .buttons a:hover{background-color: #52843a}.ce_headline_w_buttons.style2 .buttons a.button_one{border-color: #52843a;color: #52843a}.ce_headline_w_buttons.style2 .buttons a.button_two{background-color: #52843a;border-color: #52843a}.ce_headline_w_buttons.style2 .buttons a.button_one:hover{background-color: #52843a}.ce_headline_w_buttons.style3 .buttons a.button_one{border-color: #52843a;color: #52843a}.ce_headline_w_buttons.style3 .buttons a.button_two{background-color: #52843a;border-color: #52843a}.ce_headline_w_buttons.style3 .buttons a.button_one:hover{background-color: #52843a}.ce_headline_w_buttons.style5 .buttons a.button_one{border-color: #52843a;color: #52843a}.ce_headline_w_buttons.style5 .buttons a.button_two{background-color: #52843a;border-color: #52843a}.ce_headline_w_buttons.style5 .buttons a.button_one:hover{background-color: #52843a}.ce_headline_w_buttons.style6 .buttons a.button_one{border-color: #52843a;color: #52843a}.ce_headline_w_buttons.style6 .buttons a.button_two{background-color: #52843a;border-color: #52843a}.ce_headline_w_buttons.style6 .buttons a.button_one:hover{background-color: #52843a}.ce_headline_w_buttons.style10 .buttons a:hover{background-color: #52843a}.ce_featurelist.style1 li i{color: #52843a}.ce_featurelist.style2 span{color: #52843a}.ce_featurelist.style2 .icon{color: #52843a}.ce_featurelist.style2 li a:hover{background-color: #52843a}.ce_featurelist.style5 li span{color: #52843a}body .mm-menu a.active,body .mm-menu a.trail{background-color: #52843a}.header .mainmenu ul li a.highlight span,.header .mainmenu ul li a.highlight_square_color_accent span,.header .mainmenu ul li a.highlight-square-color-accent span,.header .mainmenu ul li a.highlight_rounded_color_accent span,.header .mainmenu ul li a.highlight-rounded-color-accent span{background-color: #52843a}.header .mainmenu ul li a.highlight_outline_square_color_accent span,.header .mainmenu ul li a.highlight-outline-square-color-accent span,.header .mainmenu ul li a.highlight_outline_rounded_color_accent span,.header .mainmenu ul li a.highlight-outline-rounded-color-accent span{box-shadow: 0 0px 0px 2px #52843a}.ce_accordion_v2 .toggler:not(.ui-state-active):hover{color: #52843a}.ce_accordion_v2 .toggler.ui-state-active{background: #52843a}.mod_article.ol-bg-second .article-overlay{background: #73b750}.stroke-second{stroke: #73b750}.fill-second{fill: #73b750}.ce_wrap.bg-hover-second:hover{background-color: #73b750!important}.ce_hyperlink.btn-second a{background: #73b750;border-color: #73b750}.ce_hyperlink.btn-second-outline a{border-color: #73b750;color: #73b750}.txt-color-second,.txt-color-second p,.txt-color-second i,.txt-color-second a,.txt-color-second h1,.txt-color-second h2,.txt-color-second h3,.txt-color-second h4,.txt-color-second h5,.txt-color-second h6,.txt-color-second .h1,.txt-color-second .h2,.txt-color-second .h3,.txt-color-second .h4,.txt-color-second .h5,.txt-color-second .h6,.txt-color-second .h1 p,.txt-color-second .h2 p,.txt-color-second .h3 p,.txt-color-second .h4 p,.txt-color-second .h5 p,.txt-color-second .h6 p,.txt-color-second.h1,.txt-color-second.h2,.txt-color-second.h3,.txt-color-second.h4,.txt-color-second.h5,.txt-color-second.h6,.txt-color-second.h1 p,.txt-color-second.h2 p,.txt-color-second.h3 p,.txt-color-second.h4 p,.txt-color-second.h5 p,.txt-color-second.h6 p{color: #73b750}.color-second{color: #73b750}.bg-second{background-color: #73b750}.ce_bgimage_content_start .bg_overlay.bg-second{background-color: #73b750}.notelist .submit_container input.submit,.notelist .submit_container input.submit:hover,.notelist .submit_container button.submit,.notelist .submit_container button.submit:hover{background-color: #73b750}.mod_customcataloglist.cc_cardealer .item-state{background-color: #73b750}form.style2 input.submit,form.style2 input.submit[type="submit"]:hover,form.style2 button.submit,form.style2 button.submit[type="submit"]:hover{background-color: #73b750}.ce_hyperlink-extended a.link-sec-color{border-color: #73b750;background: #73b750}.ce_hyperlink-extended a.link-sec-color:hover{color: #73b750;border-color: #73b750}.ce_hyperlink-extended a.link-sec-color-outline{color: #73b750;border-color: #73b750}.ce_hyperlink-extended a.link-sec-color-outline:hover{background: #73b750}.ce_hyperlink_lightbox_video.hyperlink_color_second svg polygon{fill: #73b750}.ce_hyperlink_lightbox_video.hyperlink_color_second svg circle{stroke: #73b750}.ce_iconbox_v3 .ce_iconbox_v3_inside.bg-second{background-color: #73b750}.ce_iconbox_v3 .ce_iconbox_v3_inside.bg-hover-second:hover{background-color: #73b750!important}.ce_iconbox_v3 .headline.headline-color-second{color: #73b750}.ce_iconbox_v3 .subheadline.subheadline-color-second{color: #73b750}.ce_iconbox_v3 .fonticon.fonticon-color-second{color: #73b750}.ce_iconbox_v3:hover.text-hover-second i,.ce_iconbox_v3:hover.text-hover-second .headline,.ce_iconbox_v3:hover.text-hover-second .subheadline{color: #73b750!important}.header .mainmenu ul li a.highlight_color_second span,.header .mainmenu ul li a.highlight-color-second span,.header .mainmenu ul li a.highlight_square_color_second span,.header .mainmenu ul li a.highlight-square-color-second span,.header .mainmenu ul li a.highlight_rounded_color_second span,.header .mainmenu ul li a.highlight-rounded-color-second span{background: #73b750}.header .mainmenu ul li a.highlight_outline_square_color_second span,.header .mainmenu ul li a.highlight-outline-square-color-second span,.header .mainmenu ul li a.highlight_outline_rounded_color_second span,.header .mainmenu ul li a.highlight-outline-rounded-color-second span{box-shadow: 0 0px 0px 2px #73b750}.ce_revolutionslider_hyperlink.color-second{color:#fff;background: #73b750;border-color: #73b750}html,body{font-family:Quicksand;font-weight: 400}body{color: #ffffff}html,body{font-size:17px}p{line-height:26px}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6,.ce_revolutionslider_text.bold,.font_headline{font-family:Quicksand;font-weight: 400}#breadcrumb,.mod_breadcrumb{display:none}#footer h1,#footer h2,#footer h3,#footer h4,#footer h5,#footer h6,#footer .h1,#footer .h2,#footer .h3,#footer .h4,#footer .h5,#footer .h6{font-size:20px}#footer h1,#footer h2,#footer h3,#footer h4,#footer h5,#footer h6,#footer .h1,#footer .h2,#footer .h3,#footer .h4,#footer .h5,#footer .h6{color: #ffffff}#footer{font-size:15px}#footer,#footer a{color: #ffffff}#footer li:after{border-color: #ffffff}#footer .inside a:hover{color: #ffffff}#footer{background-color: #73b750}#bottom{display:none}#bottom .inside a:hover{color: #ffffff}#bottom{background-color:#000}.header .mod_langswitcher{display:none}#top .inside{background: none!important}.header{background-color: ffffff}.header .mainmenu ul li a,.header .mainmenu ul li ul a.active,.header .ce_search_label i,.header .mod_langswitcher .mod_langswitcher_inside,.header .header_metanavi a,.header .mod_socials a{color: #52843a}.mod_langswitcher .mod_langswitcher_inside:before{border-color: #52843a}.header .mod_socials:before{border-color: #52843a}.header .smartmenu .smartmenu-trigger .line,.header .smartmenu .smartmenu-trigger .line:before,.header .smartmenu .smartmenu-trigger .line:after{background: #52843a}@media only screen and (min-width: 768px){.header.cloned {background: #ffffff;}}@media only screen and (min-width: 768px){.header.cloned .mainmenu ul li a,.header.cloned .ce_search_label i,.header.cloned .mod_langswitcher .mod_langswitcher_inside,.header.cloned .mod_socials a {color: #52843a;}.header.cloned .mod_langswitcher .mod_langswitcher_inside:before {border-color: #52843a;}.header.cloned .mod_socials:before {border-color: #52843a;}.header.cloned .smartmenu .smartmenu-trigger .line,.header.cloned .smartmenu .smartmenu-trigger .line:before,.header.cloned .smartmenu .smartmenu-trigger .line:after {background: #52843a;}}.logo a{background-image:url("../../files/waldfuermorgen/logo/Adler_schwarzer_Bauch_Zuschnitt.png")}.stickyheader .logo a{background-image:url("../../files/waldfuermorgen/logo/Adler_schwarzer_Bauch_Zuschnitt.png")}@media only screen and (min-width: 768px){.header.original .logo {width: 195px;}}@media only screen and (min-width: 768px){.header.original .logo {height: 145px;}.header.original {line-height: 145px;}.smartmenu .smartmenu-trigger {height: 145px;}}@media only screen and (min-width: 768px){.header.cloned .logo {width: 81px;}}@media only screen and (min-width: 768px){.header.cloned .logo {height: 55px;}.stickyheader .header.cloned {line-height: 55px;}header.cloned .smartmenu .smartmenu-trigger {height: 55px;}}@media only screen and (max-width: 767px){.header .logo {width: 110px;}}.mainmenu ul li a{font-family:Quicksand}.mainmenu ul li a{font-weight: 400}.mainmenu ul li a{font-size:16px}.header .mainmenu ul li a,.header .mainmenu ul li ul a.active,.header .ce_search_label i,.header .mod_langswitcher .mod_langswitcher_inside,.header .header_metanavi a,.header .mod_socials a{color: #52843a}.mod_langswitcher .mod_langswitcher_inside:before{border-color: #52843a}.header .mod_socials:before{border-color: #52843a}.header .smartmenu .smartmenu-trigger .line,.header .smartmenu .smartmenu-trigger .line:before,.header .smartmenu .smartmenu-trigger .line:after{background: #52843a}.header.original .mainmenu:before{background: #52843a}.header.original .mainmenu ul li a.trail,.header.original .mainmenu ul li a.active,.header.cloned .mainmenu ul li a.trail,.header.cloned .mainmenu ul li a.active{color: #52843a}.header .mainmenu ul li a:hover{color: rgba(82, 132, 58, 0.81)}.mainmenu ul li a{text-transform:uppercase}.mainmenu ul li{margin-right:30px;margin-left:30px}.mainmenu ul li a:after{right:-30px}.header ul li a.trail:before,.header ul li a.active:before{height:3px;top:0;left:0;position:absolute;content: '';width: 100%!important;background: #878787 !important}.header ul li a:before{width:0;height:3px;left:50%;position:absolute;content: '';background: #878787 !important;top: 0;transition: All 0.3s ease;-webkit-transition: All 0.3s ease}.header.original ul li ul li a:before{display:none}.mainmenu ul ul li a,nav.mainmenu a.menuheader{color: #575756!important}.header .mainmenu ul ul li a:hover:not(.menuheader):not(.megamenu),.header .mainmenu ul ul li a.active,.header .mainmenu ul ul li a.trail:not(.megamenu){color: #ffffff!important}body .mainmenu ul ul li a:hover:not(.menuheader):not(.megamenu),body .mainmenu ul ul li a.active,body .mainmenu ul ul li a.trail:not(.megamenu){background-color: #575756!important}.mainmenu ul ul{background-color: #ffffff}nav.mainmenu a.menuheader{background-color: #ffffff!important}.mainmenu ul .megamenu-wrapper ul ul{background: none}.mainmenu ul ul li a,nav.mainmenu li.megamenu > .last,.mainmenu ul .megamenu ul li,.mainmenu ul li.megamenu .megamenu-wrapper{border-color: #878787}.header.cloned .mainmenu ul li a.trail,.header.cloned .mainmenu ul li a.active{color: #52843a}.header .mod_langswitcher{font-size:.9rem}.header .mod_langswitcher .mod_langswitcher_inside{padding-right:0;vertical-align:middle}.mod_langswitcher ul{width:auto;left:auto;right:0}.mod_langswitcher .mod_langswitcher_inside{line-height:1rem}.mod_langswitcher span{display:inline-block}.mod_langswitcher img{display:none}.mod_langswitcher .mod_langswitcher_inside:before{display:none}#top .mod_langswitcher .mod_langswitcher_inside span:hover{background: none}.mm-menu .mod_langswitcher ul li img{display:none}.mm-menu .mod_langswitcher .mod_langswitcher_inside > span{display:none}@media only screen and (min-width : 768px) and (max-width : 1024px){.smartmenu {display: none;}.mainmenu {display: block;}}
/* customize_eigen.css */
.mm-navbar-bottom .mod_search input,.mm-navbar-bottom .mod_search button,.mm-navbar-bottom .mod_search .widget-text,.mm-navbar-bottom .mod_search .widget-submit{width: 90% !important}.mm-navbar-top{height: 80px}.mm-navbar-bottom{height: 100px}.mm-navbar .mod_socials{margin-top: 20px}.mm-navbar{border-color: rgba(255, 255, 255, 0.3) !important}.mm-menu .mm-navbar > *,.mm-menu .mm-navbar a{color:#ffffff}.mm-menu .mm-listview > li .mm-next::after,.mm-menu .mm-listview > li .mm-arrow::after,.mm-menu .mm-navbar .mm-btn::before,.mm-menu .mm-navbar .mm-btn::after{border-color: rgba(255, 255, 255, 1) !important}.mm-listview > li,.mm-listview > li::after,.mm-listview > li .mm-next,.mm-listview > li .mm-next::before{border-color: rgba(255, 255, 255, 0.3) !important}.mm-menu > .mm-navbar,.mm-panels{background-color:#52843a;color:#ffffff}.dsimp #wrapper{color: #000000 !important}.ce_foerderer02.version1.block{margin-bottom: 20px}.ce_foerderer02 .ce_image_text_box_content_outside a{color:#52843a}.ce_foerderer02 .ce_image_text_box_inside p{margin-bottom:0}.ce_foerderer02 .ce_image_text_box_content_outside{text-align:center}.ce_foerderer02 .ce_image_text_box_inside{width: 100%}.ce_foerderer02 .image_container img{height: 100px;    width: auto;    margin: auto}.ce_testimonial_version5 .image_container img{border-radius:0}.ce_testimonial_version5.foerderer .image_container{width: 100%;    max-width: 250px;    margin: auto;    border-radius: 0 !important;    border: none;    height: auto}.header .mod_socials{display:block}.slidertxt_layer h2{text-transform: uppercase}.highlight{padding-right:5px;padding-left:5px;background-color:#73b750}.mod_privacy_optin_slim .overlay{background-color:rgba(000000,.7);    z-index: 10000000;        z-index: 10;        width: inherit;        height: inherit;        position: inherit}.dat_imp,.mod_privacy_optin_slim .buttons{text-align: center}.ce_hyperlink.cookiebar_button a{background-color:#73b750;    border-color:#73b750}.mod_privacy_optin_slim .inside{background-color:#575756}.mod_privacy_optin_slim .inside{max-width: 450px;        top: 10px;        right: 10px;        border: 1px solid #ffffff;        bottom: auto;        left: auto;        width: 90%}#wrapper p{color:#000000}.ce_hyperlink-extended a.link-white{border:1px solid}.ce_hyperlink a{font-size: 1.3rem !important;    font-weight: 400}.slidertxt_layer{width:50%;max-width:500px;bottom:0;right:5%;top:0;position:absolute;overflow:auto;padding:50px;background-color:rgba(82,132,58,.7);z-index: 9999}.offcanvas-trigger{display:none}#top .inside{padding-top:5px}#top{line-height: normal}.mainmenu ul ul{border-color:#878787}.header ul li a.trail::before,.header ul li a.active::before{height: 3px;    top: auto;    bottom:0;    left: 0;    position: absolute;    content: '';    width: 100% !important;    background: #878787 !important}.mod_top_dsimp.meta-nav{float:right;font-size:10px}#top,#top a{background-color:#ffffff}body{font-family:'Quicksand',sans-serif}
/* customize_media.css */
@media only screen and (max-width: 1000px){.mainmenu ul li {  margin-right: 10px;    margin-left: 10px;}.header.original .logo {    height: 100px;}.header.original .logo {    width: 130px;}.header.original {    line-height: 100px;}}@media only screen and (max-width: 850px){.header .mod_search {     margin-left: 15px;}.header .inside {    padding-left: 10px;    padding-right: 10px;}.slidertxt_layer {    width: 70%;    max-width: 90%;}}@media only screen and (max-width:767px){.header .mod_socials {    display:none;}}@media only screen and (max-width:500px){.slidertxt_layer {    width: 90%;    max-width: 100%;}}
