/** 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;}
}

#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}
/* KSV */

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .font_headline {
    color:#007231;
}

body h1, body h2, body h3, body h4, body h5, body h6, body .h1, body .h2, body .h3, body .h4, body .h5, body .h6 {
margin-bottom: 15px;    
}

.mod_article.ol-bg-accent .article-overlay {
background: #007231;
}
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: #007231;
}
.header .mainmenu ul.level_1 li span.ribbon {
background: #007231;
}
.stroke-accent {
stroke: #007231}
.fill-accent {
fill: #007231}
.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: #007231;
}
.ce_wrap.bg-hover-accent:hover {
background-color: #007231!important;
}
.ce_hyperlink.btn-accent a {
background: #007231;
border-color: #007231;
}
.ce_hyperlink.btn-accent-outline a {
border-color: #007231;
color: #007231;
}
.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: #007231;
}
.bg-accent {
background-color: #007231 !important;
}
body p {
    line-height: 1.4rem;
    margin-bottom: 0;
    text-align: left !important;
}

body p a, body li a, .contact-ksv a {
color: #007231;
}
.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: #007231;
}
hr.divider_3:before {
background: #007231;
}
hr.divider_3:before {
background: #007231;
}
.divider_4_first {
border: 3px solid #007231;
}
.divider_4_second {
background-color: #007231;
}
.divider_4::after, .divider_4::before {
background-color: #007231;
}
.divider_5 i {
color: #007231;
}
.mainmenu ul ul {
border-top: 2px solid #007231 !important;
}
.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: #007231;
}
#top-wrapper.fixed .mainmenu a.active,
#top-wrapper.fixed .mainmenu a.trail {
color: #007231;
}
.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: #007231!important;
}
body.header-dark .fixed .mainmenu ul li a.trail,
body.header-dark .fixed .mainmenu ul li a.active {
color: #007231;
}
.header-light #top-wrapper.fixed .mainmenu a.active,
.header-light #top-wrapper.fixed .mainmenu a.trail {
color: #007231;
}
.subnav a {
color: #007231;
}
#nav-open-btn:before {
background: #007231;
}
.ce_table table th {
background: #007231;
}
.ce_tabs .tabs.classic ul li.active,
.ce_tabs .tabs.classic ul li:hover {
border-color: #007231;
}
.ce_tabs .tabs.horizontal ul li:hover a,
.ce_tabs .tabs.horizontal ul li.active a {
background: #007231;
}
.ce_teambox .image .overlay {
background: #007231;
}
.ce_teambox .email a {
color: #007231;
}
blockquote a {
color: #007231;
}
.header .mod_search .search-content {
background: #007231;
}

.ce_iconbox .content {
	opacity:1 !important;
}
.ce_iconbox.version2 i {
background: #007231 !important;
border: 1px solid #fff;
}
.ce_iconbox .link {
color: #007231;
}
.ce_testimonial a {
color: #007231;
}
.ce_accordion .toggler:before {
color:#007231;
}
.mod_calendar th.head {
background:#007231;
border-top:1px solid #007231;
border-right:1px solid #007231;
border-left:1px solid #007231;
}
.mod_calendar th.previous a,
.mod_calendar th.next a {
background-color:#007231;
}
.pagination li span.current {
background: #007231;
}
.pagination li a:hover {
color: #007231;
}
.mod_faqpage h3:before {
color: #007231;
}
.mod_search .submit {
border: 1px solid #007231;
}
input:focus,
textarea:focus {
border:1px solid #007231 !important;
}
body form fieldset legend {
background-color:#007231 !important;
}
input.submit[type="submit"],
button.submit[type="submit"] {
background: #007231 !important;
}

body input.submit[type="submit"]:hover,
body button.submit[type="submit"]:hover {
background: #555;
}

.ce_youtube_background.overlay .YTPOverlay {
background-color: #007231;
}
.label-accent {
background: #007231;
}
.ce_hyperlink a,
a.btn {
background: #007231 !important;
border-color: #007231 !important;
}
.ce_hyperlink.fullwidth a {
	width:100%;
}
.ce_hyperlink a.link-white,
a.btn.link-white {
color: #007231;
}
.ce_hyperlink a.link-white:hover,
a.btn.link-white:hover {
background: #007231;
}
.ce_hyperlink a.outline,
a.btn.outline {
color: #007231;
}
.newslist h2,
.newslist h2 a {
color: #007231;
}
.newslist .news-left .news-date {
background: #007231;
}
.newsteaser .date {
background: #007231 ;
}
#portfolio_filter a.selected,
#portfolio_filter a:hover {
background: #007231;
}
.ce_chartbar .chart_data {
background: #007231;
}
.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: #007231;
}
blockquote {
border-color: #007231;
}
.ce_pricetable .pricetable.highlight .title {
background: #007231;
}
.ce_imagebox_v2 .ce_url a {
background: #007231;
}
.ce_gallery .content {
background: #007231;
}
.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: #007231;
}
.ce_countup i {
color: #007231;
}
.newslist-v3 .date {
background: #007231;
}
.ce_bgimage.offset.offset-bg-accent:before {
background-color: #007231;
}
.ce_leadertext.version2 .divider-first {
border: 3px solid #007231;
}
.ce_leadertext.version2 .divider-second {
background-color: #007231;
}
.ce_leadertext.version2 .divider:after,
.ce_leadertext.version2 .divider:before {
background-color: #007231;
}
.ce_accordion .toggler i.fa {
background: #007231;
}
.newsteaser_v3 .news-overlay i {
background-color: #007231;
}
.newslist-v3 .subheadline {
color: #007231;
}
.ce_teambox .function {
color: #007231;
}
.ce_tabs .tabs.horizontal-clean ul li.active:after {
border-color: #007231 transparent transparent transparent;
}
.subheadline-v2 {
color: #007231;
}
.ce_timeline .timeline-item .timeline-item-title {
background: #007231;
}
.ce_portfoliofilter.default a.selected,
.ce_portfoliofilter.default a:hover {
background: #007231;
}
.ce_portfoliofilter.only-icon a.selected i:before,
.ce_portfoliofilter.only-icon a:hover i:before {
background: #007231;
border-color: #007231;
}
.ce_tabs .tabs.horizontal-clean ul li.active a {
color: #007231;
}



.ce_headline_extended.version2 .divider-first {
border-color: #007231;
}
.ce_headline_extended.version2 .divider:after,
.ce_headline_extended.version2 .divider:before,
.ce_headline_extended.version2 .divider-second {
background-color: #007231;
}
.mod_portfoliolist .item .linkbar a {
background-color: #007231;
}
.mod_portfoliolist .item .linkbar a:hover {
color: #007231;
}
.mod_portfoliolist .item .subline {
background-color: #007231;
}
form .input-group-addon {
background: #007231;
border-color: #007231;
}
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: #007231;
}
body .picker__list-item--highlighted,
body .picker__list-item:hover {
border-color: #007231;
}
.ce_video_background .video-overlay  {
background-color: #007231;
}
.ce_text_imagebox.imagebox_version2 .inside,
.ce_text_imagebox.imagebox_version3 .inside {
background-color: #007231;
}
#offcanvas-top {
background: #007231;
}
.cookiebar {
background: #007231;
}
#footer a:hover,
#bottom .inside a:hover {
color: #007231;
}
.ce_bgimage_content_start.bg-accent .bg_overlay {
background: #007231;
}
.newslist-timeline:before,
.newslist-timeline-both h4:before {
border-color: #007231;
}
.ce_divider_extended.version4 span {
background: #007231;
}
.ce_divider_extended.version5 {
background: #007231;
}
.ce_linkbox h4 {
color: #007231;
}
.body_bottom .mod_search .search-content {
background: #007231;
}
.mod_customcataloglist.cc_immorealty .entry.top_object .cc_immorealty_top {
background: #007231;
}
.mod_customcatalogfilter.immorealty_filter .filter_range .ui-slider-range {
background: #007231;
}
.mod_customcatalogreader.cc_immorealty .property-furnishing li i {
color: #007231;
}
.mod_customcatalogreader.cc_immorealty .price {
background: #007231;
}
.mod_customcataloglist .cc_immorealty_slider .category  {
background: #007231;
}
.mod_customcataloglist.cc_immorealty .customelements_notelist input {
background-color: #007231;
}
.mod_customcataloglist.cc_cardealer .item-rightside .item-content-col2 {
color: #007231;
}
.mod_customcatalogfilter.cardealer_filter .filter_range .ui-slider-range {
background-color: #007231;
}
.mod_customcatalogreader.cc_cardealer .single-price {
color: #007231;
}
.mod_customcatalogreader.cc_cardealer .single-price strong {
background-color: #007231;
}
.mod_customcataloglist.cc_cardealer .item-highlight-icon {
background-color: #007231;
}
.mod_customcataloglist .cc_cardealer_slider .state {
background-color: #007231;
}
.mod_customcataloglist .cc_cardealer_slider .price strong {
color: #007231;
}
.ce_linkbox a i {
background-color: #007231;
}
.ce_fullscreen_gallery.version3 .bold {
background-color: #007231;
}
form.style2 {
background: #007231;
}
.ce_linkbox .ce_linkbox_banner {
background-color: #007231;
}
.ce_linkbox .ce_headline.headline {
    color: #007231;
}
.custommenu li:hover {
background-color: #007231;
}
.ce_featured_tab li .ce_headline .headline {
color: #007231;
}
.ce_featured_tab li.active {
background-color: #007231;
}
.ce_headerimage.version3 .ce_headline .headline {
background: #007231;
}
.ce_headerimage.version3 .subline {
background: #007231;
}
.mod_portfoliolist_v4 .item a:hover {
background: #007231;
}
.mod_customcatalogteaser.cc_accommodations .entry:hover .item-content {
background: #007231;
}
.ce_revolutionslider_hyperlink.light {
color: #007231;
}
.ce_frame_start.style3 .ce_frame_start_inside {
border-color: #007231;
}
.mod_portfoliolist_teaser_3 .info,
.mod_portfoliolist_teaser_3 .info a {
color: #007231;
}
.newsteaser_v7:hover h5 {
color: #007231;
}
.ce_divider_extended.version10 svg {
fill: #007231;
}
.cd-horizontal-timeline .filling-line {
background-color: #007231;
}
.cd-horizontal-timeline .events a.older-event::after {
border-color: #007231;
}
.no-touch .cd-horizontal-timeline .events a:hover::after,
.cd-horizontal-timeline .events a.selected::after {
background-color: #007231;
border-color: #007231;
}
.mod_portfoliolist_v7 .comments {
background-color: #007231;
}
.mod_portfoliolist_v7 .subline {
background-color: #007231;
}
.mod_portfoliolist_v7 .item:hover .item-bottom a {
color: #007231;
}
.cd-horizontal-timeline .ce_text em {
color: #007231;
}
.mod_eventlist_v2 .title a {
color: #007231;
}
.ce_imagemap .hotspot.small .circle {
box-shadow: 0 0 0 5px #007231;
}
.ce_pricecard.style2.highlight .ce_pricecard_inside {
background: #007231;
}
.mod_eventlist_v3 h4,
.mod_eventlist_v3 h4 a {
color: #007231;
}
.mod_eventlist_v3 .meta-info i {
color: #007231;
}
.cd-horizontal-timeline time:before,
.cd-horizontal-timeline .location:before {
color: #007231;
}
.cd-horizontal-timeline .more a {
background: #007231;
}
body .mainmenu ul li a:hover:before,
body .mainmenu ul li a.trail:before,
body .mainmenu ul li a.active:before {
background-color: #007231;
}
.ce_popup_start .popup_close {
color: #007231;
}
.ce_popup_start .ce_popup_content {
border-color: #007231;
}
.mod_eventlist_v4 i.fa-location-arrow {
background-color: #007231;
}
.ce_hyperlink_lightbox_video.hyperlink_color_accent svg polygon  {
fill: #007231;
}
.ce_hyperlink_lightbox_video.hyperlink_color_accent svg circle {
stroke: #007231;
}
.mod_portfoliolist_demos .item .overlay {
background-color: #007231;
}
.mod_portfoliolist_demos .item h5:hover {
color: #007231;
}
.ce_iconbox_v3 .ce_iconbox_v3_inside.bg-accent {
background-color: #007231;
}
.ce_iconbox_v3 .ce_iconbox_v3_inside.bg-hover-accent:hover {
background-color: #007231!important;
}
.ce_iconbox_v3 .headline.headline-color-accent {
color: #007231;
}
.ce_iconbox_v3 .subheadline.subheadline-color-accent {
color: #007231;
}
.ce_iconbox_v3 .fonticon.fonticon-color-accent {
color: #007231;
}
.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: #007231!important;
}
.submenu_v2 li a:hover,
.submenu_v2 li a.active {
color: #007231;
}
.ce_list.list-style2 li.fa:before {
color: #007231;
}
.ce_list.list-style3 li.fa:before {
color: #007231;
}
.ce_revolutionslider_hyperlink.text-link:after {
color: #007231;
}
.ce_download_small .ce_download_small_inside a:after {
color: #007231;
}
.ce_download_small .ce_download_small_inside a {
border-color: #007231;
}
.ce_imagemap .circle {
box-shadow: 0 0 0 4px #007231;
}
.ce_testimonial_version7 .text_inside:before {
background: #007231;
}
.ce_portfoliofilter.port-filter-style3 a.selected {
border-color: #007231;
}
form.style8 input.submit[type="submit"],
form.style8 button.submit[type="submit"] {
color: #007231;
}
.ce_image_text_box .ce_image_text_box_banner {
background: #007231;
}
.ce_image_text_box.version2 a.hyperlink_txt {
color: #007231;
}
.ce_grid_gallery_start li:hover .linktext {
color: #007231;
}
.mod_quickmenu.style2 a {
border-color: #007231;
color: #007231;
}
.mod_customcataloglist.cc_product_catalog .item-inside:hover {
border-color: #007231;
}
.mod_customcatalogteaser.cc_product_catalog .item-highlight-icon {
background-color: #007231;
}
.ce_headline_w_buttons.style1 .buttons a:hover {
background-color: #007231;
}
.ce_headline_w_buttons.style2 .buttons a.button_one {
border-color: #007231;
color: #007231;
}
.ce_headline_w_buttons.style2 .buttons a.button_two {
background-color: #007231;
border-color: #007231;
}
.ce_headline_w_buttons.style2 .buttons a.button_one:hover {
background-color: #007231;
}
.ce_headline_w_buttons.style3 .buttons a.button_one {
border-color: #007231;
color: #007231;
}
.ce_headline_w_buttons.style3 .buttons a.button_two {
background-color: #007231;
border-color: #007231;
}
.ce_headline_w_buttons.style3 .buttons a.button_one:hover {
background-color: #007231;
}
.ce_headline_w_buttons.style5 .buttons a.button_one {
border-color: #007231;
color: #007231;
}
.ce_headline_w_buttons.style5 .buttons a.button_two {
background-color: #007231;
border-color: #007231;
}
.ce_headline_w_buttons.style5 .buttons a.button_one:hover {
background-color: #007231;
}
.ce_headline_w_buttons.style6 .buttons a.button_one {
border-color: #007231;
color: #007231;
}
.ce_headline_w_buttons.style6 .buttons a.button_two {
background-color: #007231;
border-color: #007231;
}
.ce_headline_w_buttons.style6 .buttons a.button_one:hover {
background-color: #007231;
}
.ce_headline_w_buttons.style10 .buttons a:hover {
background-color: #007231;
}
.ce_featurelist.style1 li i {
color: #007231;
}
.ce_featurelist.style2 span {
color: #007231;
}
.ce_featurelist.style2 .icon {
color: #007231;
}
.ce_featurelist.style2 li a:hover {
background-color: #007231;
}
.ce_featurelist.style5 li span {
color: #007231;
}
body .mm-menu a.active, body .mm-menu a.trail {
background-color: #007231;
}
.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: #007231;
}
.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 #007231;
}
.ce_accordion_v2 .toggler:not(.ui-state-active):hover {
color: #007231;
}
.ce_accordion_v2 .toggler.ui-state-active {
background: #007231;
}
.mod_article.ol-bg-second .article-overlay {
background: #fecc00;
}
.stroke-second {
stroke: #fecc00}
.fill-second {
fill: #fecc00}
.ce_wrap.bg-hover-second:hover {
background-color: #fecc00!important;
}
.ce_hyperlink.btn-second a {
background: #fecc00;
border-color: #fecc00;
}
.ce_hyperlink.btn-second-outline a {
border-color: #fecc00;
color: #fecc00;
}
.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: #fecc00;
}
.color-second {
color: #fecc00;
}
.bg-second {
background-color: #fecc00;
}
.ce_bgimage_content_start .bg_overlay.bg-second {
background-color: #fecc00;
}
.notelist .submit_container input.submit,
.notelist .submit_container input.submit:hover,
.notelist .submit_container button.submit,
.notelist .submit_container button.submit:hover {
background-color: #fecc00;
}
.mod_customcataloglist.cc_cardealer .item-state {
background-color: #fecc00;
}
form.style2 input.submit,
form.style2 input.submit[type="submit"]:hover,
form.style2 button.submit,
form.style2 button.submit[type="submit"]:hover {
background-color: #fecc00;
}
.ce_hyperlink-extended a.link-sec-color {
border-color: #fecc00;
background: #fecc00;
}
.ce_hyperlink-extended a.link-sec-color:hover {
color: #fecc00;
border-color: #fecc00;
}
.ce_hyperlink-extended a.link-sec-color-outline {
color: #fecc00;
border-color: #fecc00;
}
.ce_hyperlink-extended a.link-sec-color-outline:hover {
background: #fecc00;
}
.ce_hyperlink_lightbox_video.hyperlink_color_second svg polygon  {
fill: #fecc00;
}
.ce_hyperlink_lightbox_video.hyperlink_color_second svg circle {
stroke: #fecc00;
}
.ce_iconbox_v3 .ce_iconbox_v3_inside.bg-second {
background-color: #fecc00;
}
.ce_iconbox_v3 .ce_iconbox_v3_inside.bg-hover-second:hover {
background-color: #fecc00!important;
}
.ce_iconbox_v3 .headline.headline-color-second {
color: #fecc00;
}
.ce_iconbox_v3 .subheadline.subheadline-color-second {
color: #fecc00;
}
.ce_iconbox_v3 .fonticon.fonticon-color-second {
color: #fecc00;
}
.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: #fecc00!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: #fecc00;
}
.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 #fecc00;
}
.ce_revolutionslider_hyperlink.color-second {
background: #fecc00;
border-color: #fecc00;
color: #fff;
}
#top .top_metanavi {
display: none;
}
#top .mod_socials {
display: none;
}
#top .offcanvas-trigger {
display: none;
}
#top-wrapper #top  {
border-bottom: 1px solid #eeeeee;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6,
.ce_revolutionslider_text.bold, .font_headline {
font-weight: normal !important;
}

#footer h6.ce_headline {
color: #007231
}

body #top .inside,
.header .inside,
#footer .inside,
#bottom .inside,
body.sidebar #container,
.mod_article:not(.fullwidth):not(.fullwidth-boxed-medium):not(.fullwidth-boxed-small) > .container,
.fullwidth.boxed-content .contentwrap,
.smallwidth .contentwrap,
.boxed-content .contentwrap,
.autogrid_wrapper.article,
.ce_text_image_bar .inside,
.ce_headerimage .ce_headerimage_inside,
.ce_video_background .ce_video_background_inside,
#offcanvas-top .offcanvas-top-inside,
.ce_calltoaction .ce_calltoaction_inside,
.mod_breadcrumb .mod_breadcrumb_inside,
.mod_pageimage .container {
max-width: 1240px;
}
.mod_article.boxed {
max-width: calc(1200px - 80px);
margin-left: auto;
margin-right: auto;
}
#wrapper,
#footer,
#bottom {
max-width: 1240px;
margin-left: auto;
margin-right: auto;
}

/* general */ 

.ce_hidden {
    display: none;
    visibility: hidden;
}

body #contentwrapper {
background: #fff;
}
#wrapper {
margin-top: -50px;
z-index: 1000;
}
#slider {
min-height: 120px;
}
#titlebar {
min-height: 120px;
}
.mod_breadcrumb {
display: none;
}
#wrapper,
#footer,
#bottom {
max-width: 1240px;
margin-left: auto;
margin-right: auto;
}
body {
background-color: #f3f3f3!important;
}
#breadcrumb,
.mod_breadcrumb {
display: none;
}
.header .mod_langswitcher {
display: none;
}
#top .inside {
background: none!important;
}
.logo {
position: absolute;
}

@media only screen and (min-width: 768px) {
#fix-wrapper {
position: absolute;
left: 0;
}
}

@media only screen and (min-width: 768px) {
.header.original .logo {
height: 120px;
}
.header.original {
line-height: 120px;
}
.smartmenu .smartmenu-trigger {
height: 120px;
}
}
.mainmenu ul li {
margin-left: 12px;
margin-right: 12px;
}
.mainmenu ul li a:after {
right: -12px;
}
.mainmenu ul li a.nav-icon span {
line-height: inherit;
transform: translateY(0);
-webkit-transform: translateY(0);
}
.mainmenu ul li a i.fa {
transform: translateY(0);
-webkit-transform: translateY(0);
position: static;
width: auto;
margin-right: 7px;
}
.header .mainmenu ul ul li a {
    font-size: 1rem!important;
}
.header .mainmenu ul ul li a:hover:not(.menuheader):not(.megamenu),
.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: #007231!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: #ffffff!important;
}


/* -------------------------------------------------------------- */
/* bitte beachten */
body .mod_navigation.mainmenu :focus, .mod_langswitcher :focus {
    outline-color: transparent;
}

/* search */
body .body_bottom .mod_search.ksv-search .search-content {
    background: rgba(255,255,255,0.95);
    top: 20vh;
    width: 60vw;
    margin: 0 20vw;
    height: auto;
    padding: 8px 15px;
    -webkit-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.75);
}

body .body_bottom .mod_search input:not(.submit), .body_bottom .mod_search button:not(.submit) {
    width: 75%;
    border: 1px solid #696969;
    float: left;
    color: #696969;
    font-size: 1rem;
}

body .body_bottom .mod_search.ksv-search .search-content form {
    margin-right: 0;
    height: initial;
    max-width: unset;
}

body .body_bottom .mod_search .label {
    text-align: left;
    font-size: 1rem;
    color: #696969;
    margin-bottom: 0;
    font-weight: normal;
}
body .body_bottom .mod_search .search-content::before {
    margin-bottom: 0;
    height: 0;
}
body .body_bottom .mod_search .close-window i {
    position: absolute;
    top: 0;
    right: 0;
}
body .body_bottom .mod_search .close-window i::before {
    border: none;
    color: #696969;
}
body .body_bottom .mod_search.ksv-search .search-content form .formbody input.submit {
    color: #696969;
    border: 1px solid #696969; 
    float: left;
    margin: 0 0 0 15px;
    width: 20%;
}

/* consent */
.mod_privacy_optin .submit.readonly, .mod_privacy_optin .submit.readonly:hover, .mod_privacy_optin .submit.readonly:focus {
    color: #fff !important;
}

/* body */

body, h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', 'helvetica', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

.container .image_container .caption {
	background:transparent;
	color:#555;
	padding-left:0;
}


/* top */
#top-wrapper #top .mod_top_phone i {
    margin-left: 0;
}

#top-wrapper #top .mod_top_mail i {
    margin-right: 10px;
}

/* header */

.mainmenu ul li a {
    
}

body #top {
    width: 100%;
    background: #007231;
    color: #fff;
}

body #top a {
    color:#fff;
}

#header.header.original .inside {
    max-width: 1200px;
    padding-left: 0;
} 

#header.header.original nav.mod_navigation.mainmenu.block {
    float: left;
    margin-top: 16px;
    line-height: 54px;
}

#stickyheader.stickyheader nav.mod_navigation.mainmenu.block {
    float: left;
}

#header .mod_search, #stickyheader .mod_search {
    float: none;
    color: #007231;
}
/* chk */
#header.header.original .inside .mod_search {
    margin-left: 2.5vw; 
}

.mod_search .ce_search_label i.fa.fa-search {
    font-size: 1.3rem;
}

#contentwrapper #top .inside nav.mod_navigation {
    float: none;
}

#contentwrapper #top .top_metanavi li {
    padding-left: 0;
}

/* header icons */
i.fa.fa-clock::before {
content:'\f017';
}

/* header nav */
/* body .headline-top a.a-level_2.headline-top,body .headline-top a.a-level_3.headline-top {
padding: 6px 12px 6px 12px !important;
    display: block;
}
*/

/* headline ksv */
.headline-ksv {
    color: #007231;
}


/* impressum */
.mod_top_impressum {
    float: right;
}

.mod_top_impressum span {
    margin-left: 20px;
}

#contentwrapper #wrapper #container {
    padding-bottom: 50px;
}

body #contentwrapper aside {
    top: 40px;
}

body #contentwrapper aside#left {
    padding-right: 20px;
    width: 27%;
}

/* subnav */

.leftmenu-ksv ul li, .leftmenu-ksv ul.level_2 li, .leftmenu-ksv ul.level_3 li {
border-top:2px solid #fff;
}

.subnav.leftmenu-ksv {
    background: rgba(230,230,230,1);
    margin-bottom: 40px;
}

body .subnav.leftmenu-ksv a {
    padding: 5px 9px 5px 9px;
    margin-bottom: 0;
    color: #007231;
    border-radius: unset;
}

.leftmenu-ksv ul.level_2 li a::before {
    content:'\25AA';
    position: absolute;
    margin-left: -14px;
    font-size: 22px;
}

.leftmenu-ksv ul.level_2 li a {
    padding-left: 35px;
}

.leftmenu-ksv ul.level_3 li a {
    padding-left: 50px;
}

.leftmenu-ksv ul.level_3 li a::before {
    content:'\2023';
}
.leftmenu-ksv ul.level_4 li a {
    padding-left: 65px;
}

.leftmenu-ksv ul.level_4 li a::before {
    content:'\25E6';
}







/* end subnav */

body .subnav {
    margin-top: 0;
}




body .subnav a:hover {
    background: #cce3d6;
}

body .subnav a.active {
   color: #fff;
    background: #007231;
}

body .subnav ul ul a {
    padding-left: 25px;
}



/* breadcrumb */
body #breadcrumb {
    display: block;
}
body #breadcrumb .mod_breadcrumb {
    display: block;
    background: rgba(230,230,230,1);
    max-width: 1240px;
    margin: 0 auto;
    border-bottom: none;
    border-top: none;
}
body .mod_breadcrumb ul {
    text-align: left;
    line-height: 1.3rem;
}
body .mod_breadcrumb li::before {
    content: "| ";
}
body .mod_breadcrumb_inside ul li:last-child * {
    color: #007231 !important;
}

/* page image 
#slider .mod_pageimage .inside {
max-height:400px;
}
*/


/* wrapper */

#contentwrapper div#wrapper {
    margin-top: 0;
}

/* lightboxes */
.ce_linkbox_image a.ce_linkbox_link .ce_linkbox_overlay {
background:rgba(255,255,255,0.6);
}
#wrapper .ce_linkbox a i {
    background: rgba(255,255,255,1)
}
#wrapper .ce_linkbox a i::after, #wrapper .ce_linkbox a i::before {
    background: #007231;
    height: 3px;
}
.ce_linkbox h3 {
    font-size: 1.3rem;
    color:#696969;
    font-weight: normal;
}


/* content pages */

body .mod_pageimage .inside > .container {
    height: 400px;
}

/* headlines 
.headline-top .mod_pageimage .container {
align-items: flex-start;
}
*/
body .mod_pageimage .headline {
    text-shadow: 0 0 20px #555;
}

/* 
body.content_page.sidebar.left #main .mod_article > .container {
    padding-left: 15px;
}
*/

/* datenschutz */
body .impdat h4 {
    margin: 20px 0 20px 0;
}


/* Lay-Elements */
.smaller-headline h4 {
	font-size:1rem;
	font-weight:bold!important;
	margin-top:15px;
}
a#ksv-greenbutton {
    background: #007231;
    color: #fff;
    padding: 8px 10px;
    margin-top: 10px;
    display: inline-block;
}

.ksv-greenbutton {
    background: #007231;
    color: #fff;
    padding: 12px 20px;
    margin-top: 25px;
    display: inline-block;
    font-weight:normal;
}

#ksv-greenbutton.ce_hyperlink a {
    background: #007231;
    color:#fff;
    margin-top: 15px;
    float: right;
}

#ksv-whitebutton.ce_hyperlink a {
    background:#fff;
    color:#007231;
    float: right;
    border:none;
}

#ksvbutton .ce_hyperlink {
    clear: both;
    position: static;
    transform: none;
}

.teaser-bild-text {
    padding: 30px 30px;
    background-color: rgba(250,250,250,1);
    margin-left: 0;
    margin-right: 0;
}

.rotate5 {
    transform: rotate(-3deg);
}

/* news */
.newsteaser .info {
    display: none;
}

/* infobox */
#info-start .container {
    padding-bottom: 0 !important;
}
#infobox {
    padding: 15px 15px 15px 20px;
    margin:40px 0 0 40px;
}
#infobox .ce_text .image_container {
    float: left;
}
#infobox.ksv-gray {
    margin-left: 40px;
}
#infobox.mb-m {
    margin-bottom:30px !important;
    }
    
body #main #infobox .container {
padding: 0;
}
#infobox.ksv-gray > * {
    color: #007231;
} 
#infobox.ksv-gray h3 {
    color: #007231;
}
#infobox.ksv-green > * {
    color: #fff;
} 
#infobox.ksv-green h3 {
    color: #fff;
}
.ksv-green {
    background: #007231;
}
.ksv-gray {
    background: rgba(230,230,230,1);
}
#infobox .image_container.float_left {
margin-right:15px;
}


/* footer */
body #footer {
    background: #cce3d6; 
    color: #555;
}

body #footer li, #contentwrapper #footer h3, #contentwrapper #footer h4 {
    color: #555;
}
body #footer a {
    font-weight: bold;
    color: #555;
}
body #footer a:hover {
    color: #007231;
}

body #bottom {
    background: #007231;
}
body #bottom .inside, #contentwrapper #bottom .inside a {
        color: #fff;
}
#bottom .inside a:hover {
    text-decoration: none;
}

/* both */

body.content_page.both aside#right .inside .container {
    padding-top:0; 
}

body #contentwrapper #wrapper #container section#main {
    border: none;
}

body.both #contentwrapper #wrapper #container section#main {
    width: 50%;
}

body.both #contentwrapper #wrapper #container aside#right {
    left: 52%;
}

body.win.sidebar.both #wrapper #container aside#right {
    margin-right: -22%;
}

/* responsiv smartmenue */
body .smartmenu {
    float: left;
}
body .smartmenu .smartmenu-trigger .line, body .smartmenu .smartmenu-trigger .line::before, body .smartmenu .smartmenu-trigger .line::after {
    background: #007231;
    height: 2px;
}
body .smartmenu-content {
    background: rgba(230,230,230,0.9);
}
body .smartmenu-table {
    margin-left: 25px;
    text-align: left;
}

body .smartmenu-content .mod_navigation a {
    color: #555;
}

body #contentwrapper #footer .smartmenu-content.open .smartmenu-table .vlist li a {
    font-weight: normal;
    text-decoration: none;
}
body .smartmenu-content.open .smartmenu-table .vlist li .subitems_trigger::before {
    color: #555;
}

body #footer .smartmenu-content.open li::after {
    border-bottom-color: #555;
}
body .smartmenu-content a {
    color: #fff;
}
body .smartmenu-content .smartmenu-close::before, body .smartmenu-content .smartmenu-close::after {
    background: #555;
}

/* mobil */

/* #logowrapper .logo a:hover {
    background: url(../../files/cto_layout/img/logo.svg) !important;
    background-color: transparent !important;
}
*/

/* mobil nav */

nav#mmenu.mod_navigation {
    font-size: 1.25rem;
    line-height: 120%;
    width: 75%;
    margin: 0 auto;
    border: 1px solid rgba(230,230,230,1);
    border-width: thin;
}

nav#mmenu.mod_navigation a {
    border-bottom: 1px solid rgba(230,230,230,1);
    border-width: thin;
    padding: 20px 30px;
    display: block;
}

nav#mmenu.mod_navigation a:hover {
    background: rgb(235,235,235);
    color: #007231;
}

nav#mmenu.mod_navigation ul ul a {
padding-left: 60px;
}

nav#mmenu.mod_navigation ul ul a.a-level_3 {
    padding-left: 85px;
}

nav#mmenu.mod_navigation ul li a.sibling:first-child {
    background: rgba(220,220,220,1);
}

.subnav a.active {
    color:#000;
}



.mm-panel.mm-hasnavbar.mm-opened.mm-current ul.vlist.mm-listview {
    background: #e8e8e8;
}

#mobnav .mm-menu {
    background: #fff;
}
#mobnav .mm-navbar-top {
    height: 100px;
    border-bottom: none;
}
body .mm-menu a:hover, body .mm-menu a.active {
    color: #007231 !important;
}
.mm-navbar-top .mod_search.block, .mm-navbar-top .mod_top_mail {
    float: none;
}
#mobnav .mm-navbar .mod_search input {
    border-radius: 5px;
}
.mm-navbar-top .mod_search.block {
    width: 94%;
}
.mm-navbar-top .mod_top_mail {
    text-align: left;
    padding: 4px 0 6px 15px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 6px;
    width: 100%;
}
.mm-navbar-top #logowrapper {
    float: right;
    margin-right: 15px;
}
.mm-navbar-top #logowrapper, .mm-navbar-top #logowrapper .logo {
    position: static;
}
.mm-hasnavbar-top-1.mmenu_top .mm-panels {
    top: 165px;
}




body #nav-open-btn::before {
    color: #007231;
    background: transparent;
}
body #nav-open-btn {
    left:20px;
}
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: #e8e8e8 !important;
}
 body .mm-menu .mm-listview > li.mm-selected > a:not(.mm-next) {
    color: rgba(0, 0, 0, 0.7) !important;
}
body .mm-menu {
    width: 100%;
    overflow: visible;
    max-width: none;
    background: #fff;
}
html.mm-opened.mm-blocking.mm-background .mm-slideout {
    transform:translate(100%, 0);
}


/* trigger */
body .content-table {
    margin-left: 20px;
    line-height: 40px;
    float: left;
    display: block;
    }

body .content-table .content-trigger {
    display: block;
    width: 35px;
    height: 35px;
    margin-top: 12px;
}

body .content-table .content-trigger .line {
	height: 2px;
	background: #007231;
	width: 35px;
	position: absolute;
	display: block;
	top: 50%;
	margin-top: -1px;
}

body .content-table .content-trigger .line::before, body .content-table .content-trigger .line::after {
display: inline-block;
width: 35px;
height: 2px;
background: #007231;
position: absolute;
left: 0;
content: '';
top: 50%;
margin-top: -13px;
transition: All 0.3s ease;
-webkit-transition: All 0.3s ease;
}

body .content-table .content-trigger .line::before {
margin-top: 11px;
}

body .content-table .content-trigger .line::after {

}

/* KSV tag */
.mod_ksvtag {
    color: #007231;
    display: inline-block;
    font-size: 24px;
    margin-left: 2.5vw;
    line-height: 1.5;
}

/* Glossar */
#glossar {
	display: inline-block;
	height: 100%;
    margin-left: 1.5vw;
}

#glossar a {
    font-size: 20px;
    color: #007231;
}


/* #glossar a {
	background-image: url(../../files/cto_layout/img/a-z_green.svg);
	background-size: contain;
	display: inline-block;
	height: 30px;
	vertical-align: middle;
	width: 100%;
} */

/* Kontakt */
#contact .content {
    background:#007231;
    padding: 10px 10px 5px 14px;
    color: #fff;
}

#contact .headline {
    color: #fff;
    font-size: 1.867rem;
}

body.sidebar #right #contact .ce_text {
    background: none;
    padding: 0;
    font-family: inherit;
    display: block;
}

#contact .fa.ce_text::before {
    font-family: 'FontAwesome';
    margin-right: 5px;
    float:left;
    margin-top: 2px;
}

.contact-ksv::before {}

#contact a {
    color:#eee;
    line-height: 1.4rem;
    margin-left: 24px;
    display: block;
}

#contact .mailto a {
word-wrap: break-word;
}
#contact .phone a {
margin-top:3px;
}

#contact .mailto:last-child {
    margin-bottom: 14px;
}

.ce_kontaktelement .ce_text.attribute.text.name {
line-height:17px;
}

#right .ce_text.last.block {
margin-top:40px;
}

.mailto ~ .name, .mailto ~ .angaben {
    margin-top: 14px;
}

#contact .fa.ce_text.mailto::before {
    margin-top: 4px;
}

/* linkbox right */
.sidebar.both #right .ce_linkbox {
background:#e6e6e6;
padding:10px;
}

/* bedienhilfen */
#accessibility_banner.medium.small {
background:#007231;
}

body #accessibility_widget.accessibility_widget {
    border-radius: 0;
    border: 2px solid #007231;
    box-shadow: unset;
    margin: 0;
}

#accessibility_widget .widget {
    border-bottom: 2px solid #007231;
}

#accessibility_widget .widget:last-child {
    border-bottom:none;
}

/* autogrid */
.ksv-linked-box .autogrid_row .column.col_4.col_6_t.col_12_m {
    margin-bottom: 25px;
}

.ksv-linked-box .container {
padding-bottom:0;
}

/* Downloads */
#publication h4 {
margin-top:20px;
}

#publication li {
line-height:2rem;
}

#publication li a {
color:#007231 ;
}

.download_ksv li, .publication-list li {
	display: flex;
	padding: 0 6px;
}

.download_ksv li img, .publication-list li img {
    height: 18px;
    position: relative;
    top:6px;
}

.download_ksv li a, .publication-list li a {
    margin-left: 10px;
    padding: 3px 0;
    line-height: 1.4;
}

.download-description {
    margin-bottom: 35px
}

.download-file {
    padding:15px;
    background-color: #eee;
}

/* Anfahrt */


/* VAs */
.ksv-list h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #007231;
}

.ksv-list .teaser {
    margin-bottom: 10px;
}

.ksv-list .date.bg-accent {
    color: #fff;
    padding: 10px;
    font-size: 1.2rem;
}

.mod_eventlist_ksv {
    padding: 40px 0 40px 40px;
}

.ksv-list .ce_hyperlink {
    text-align: right;
}

.ksv-list .location {
    margin-top: 4px;
    margin-left: 10px;
}

.ksv-list .content {
    margin-left: 10px;
    padding-bottom: 8px;
}

.ksv-list .contact-ksv a:before {
font-family: "FontAwesome";
content: "\f0e0";
display: inline-block;
margin-right: 6px;
}

.mod_eventlist_ksv .ksv-event {
margin-bottom:25px;
    background: #eee;
    padding: 0;
}

.vas {
    padding-right: 0;
}
.ksv-va {
    border: 1px solid #007231;
    border-width: thin;
    padding: 8px;
    margin-top: 15px;
}
.ksv-va-date {
    font-weight: bold;
    line-height: 14px;
}
.ksv-va-time {
    
}
.ksv-va-time::after {
    content:' Uhr';
}
.ksv-va-title {
    font-size: 18px;
    color: #007231;
    margin-bottom: 5px;
    line-height: 20px;
    margin-top: 5px;
}

/* press */

.newsreader.block.ksv .info {
padding:8px 15px;
    background: #007231;
    color: #fff;
    margin-bottom: 20px;
    font-size: 15px;
}
.newsreader.block.ksv .back {
    border-top: 1px solid #007231;
}
.news-content.ksv h3 a {
    color: #007231;
    font-size: 1em;
}

.news-content.ksv h3 {
    border-top: 1px solid #007231;
    padding-top: 20px;
    margin-bottom: 5px;
}

.news-content.ksv .ce_hyperlink.medium a {
    background: #007231;
    font-weight: 500;
    border: none;
}

.news-content.ksv .teaser {
border-top:none;
    margin-top:0;
    padding-top:15px;
    padding-bottom:0;
}

.ksv .news-content-inside .ce_hyperlink.medium {
margin-top:25px;
}

.mod_newslist.press .news-content.ksv {
    margin-bottom: 0;
}

.mod_newslist.press.block .pagination .current {
background: #007231;
}

.mod_newslist.press.block .pagination li a {
color: #007231;
}

.mod_newslist.press.block, .mod_newsreader.block, .mod_eventreader.block {
    padding-left:40px;
    padding-top: 40px;
}

#homenews .mod_newslist.press.block {
	background: #f7f7f7;
	padding: 20px;
}

#homenews .mod_newslist.press.block .homepage {
    margin-bottom: 0;
}
#homenews .container {
    padding-bottom: 10px;
}

#homenews .frontpage .news-content-inside h3 {
font-size:18px;
}

.mod_newsreader.stellen.block {
padding:0;
}

.mod_eventreader.block .form-start {
    margin-top: 35px;
}

.mod_eventreader.block .form-ksv {
    margin-top: 25px;
}

/* schulungen */
.schulung-ksv {
	clear:both;
}
.mandatory legend span.mandatory {
display: inline-block;
margin-bottom: 0;
vertical-align:bottom;
}

/* dropdown ksv css */
#va-dropdown {
	z-index: 999;
	display: inherit;
	position: absolute;
	right: 0;
	top: 40px;
}
#va-dropdown .level_1 {
	display:flex;
	flex-wrap:nowrap;
}

#va-dropdown li.year:nth-child(n+1) > a:nth-child(1) {
	color:#fff;
	font-size:16px;
	padding:8px 12px;
	background:#007231;
	display: inline-block;
	width: 100%;
}

#va-dropdown li.year {
	margin-left:10px;
	min-width: 120px;
}

#va-dropdown li.year:nth-child(n+1) > a:nth-child(1)::after {
    font-family: 'FontAwesome';
    content:'\f078';
    font-size:12px;
	display: block;
	float: right;
}
#va-dropdown ul.level_2 {
	display:none;
    background:#fff;
    padding-top:5px;
}
#va-dropdown ul.level_2 li {
	border-bottom:1px solid #007231;
	border-width:thin;
}

#va-dropdown li.year.showdropdown ul.level_2 {

}
#va-dropdown ul.level_2 li a {
padding:5px 5px;
}

#va-dropdown ul.level_2 li.last {
border:none;
}

form.no-border fieldset.notopborder {
	border-top:none;
}

.ce_text h5 {
	margin-top:15px;
	margin-bottom:10px;
}

.formbody span a {
	color:#007231;
}

.redstar {
	color:#f00;
	display:inline !important;
}

/* DSE */
.cookie_settings .palette .item:nth-child(2) {
	display:none;
	visibility:hidden;
}

/* responsiv */

@media only screen and (max-width: 1200px) {
    body .mainmenu ul li a {
        font-size: 1.25vw;
    }
    body #top .mod_top_phone {
        display: block;
    }
    .mod_ksvtag {
        font-size: 1.8vw;
    }
    #header .mod_search, #stickyheader .mod_search {
        margin-left: 20px;
    }
}

@media only screen and (max-width: 767px) {
    
    /* autogrid */
    
    .ksv-linked-box .autogrid_row.same_height {
    justify-content: space-between;
    }
    .ksv-linked-box .autogrid_row .column.col_4.col_6_t.col_12_m, .ksv-linked-box .autogrid_grid .column {
        flex-basis: 48.5%;
        width:unset;
        flex-grow: 0;
    }
    #wrapper #main .ksv-linked-box.fullwidth {
        padding: 0 20px !important;
    }
    body #top-wrapper #top {
        display: block;
    }
    body .stickyheader .header.cloned .inside, .header .inside {
        height: 80px !important;
    }
    .mod_ksvtag {
        font-size: 14px;
        width: 38%;
        vertical-align: middle;
        margin-left: 30px;
        margin-top: -8px;
    }
    #glossar a {
        margin-top: 16px;
        margin-left: 20px;
    }
    body .mod_pageimage .inside > .container {
        height: 200px;
    }
    body.sidebar aside#right, body.sidebar aside#left {
        border-top: none !important;
    }
    html body.sidebar #main .inside .mod_article .container, body.sidebar aside#right .container, body.sidebar aside#left container {
	   padding: 0 40px !important;
    }
    html body.sidebar #main .inside .mod_article.first .container {
        padding-top: 40px !important;
    }
    .mod_newslist.press.block, .mod_newsreader.block, .mod_eventreader.block, .mod_eventlist_ksv, .mod_eventmenu.block {
        padding-right: 40px;
    }
    .mod_eventlist_ksv .ksv-event {
        margin-top:15px
    }
    #info-start .container {
    padding-top: 0 !important;
    }
}

@media only screen and (max-width: 594px) {
    .ksv-linked-box .autogrid_row .column.col_4.col_6_t.col_12_m {
        flex-basis: 100%;
    }
    
    /* .ce_linkbox h3 {
    font-size: 1.2rem;
    } */
    .mod_ksvtag {
        display: none;
        visibility: hidden;
    }
	nav#mmenu.mod_navigation {
		width:100%;
	}
}

/* temporary */


nav.mod_navigation.mainmenu.block {
    margin-left: -28px;
}

nav.mod_navigation.mainmenu.block ul li a {
    font-size: 0.87rem;
    color: #007231;
}

nav.mod_navigation.mainmenu.block ul li a:hover {
    color: #696969;
}

nav.mod_navigation.mainmenu.block ul li {
    margin-left: 7px;
    margin-right: 7px;
}

body .header.original .mainmenu ul ul li a.trail::after, body .header.original .mainmenu ul ul li a.active::after {
    display: inline-block;
}

/* generals */
.full-width-ksv img {
	width:100%;
	height:auto;
}
.ce_form .form-hidden {
	border-top:none;
}
.form-hidden legend {
	display:none;
	visibility:hidden;
}
.form-hidden .form-visible legend {
	display:block;
	visibility:visible;
}
/* forms */
.text-range {
	margin-top:-40px;
	margin-bottom:40px;
	margin-right:5px;
	margin-left:3px;
	display:flex;
	justify-content:space-between;
}
.range {
	padding-left:0;
	padding-right:0;
}
.text-range span {
	display:block;
	font-size:18px;
}
.widget-range {
	margin-top:15px;
}
.widget-range label {
	font-weight:bold;
}

.special-forms fieldset {
	border: none !important;
}
.special-forms fieldset legend {
	background-color: transparent !important;
	color: #007231;
	padding: 0;
	margin-bottom:15px !important;
	font-size: 1.2rem;
}



/* generals responsive */
@media only screen and (max-width: 1032px) {
.mobil-stabil {
	display:none;
}
}
@media only screen and (min-width: 1500px) {
.slider-start {
	max-height:80vh !important;
	height:80vh !important;
}
}
@media only screen and (max-width: 1499px) {
.slider-start {
	max-height:unset;
	height:unset;
}
}

/* accordions */
.container .ce_accordion .toggler:before {
	color:#fff;
}
.container .ce_accordion .toggler {
	background:#007231;
	color:#fff;
}
.container .ce_accordion .toggler:hover {
	color:#efefef;
}
.ce_accordionSingle {
	margin-bottom:10px;
}

/* logo KSV Start */

#logowrapper {
    position: absolute;
    right: 0;
    border-radius: 5px;
    padding:0 10px;
    top: 5px;
}

#fix-wrapper #logowrapper {
    top: 0;
}

#header.header.original .logo {
    position: static;
    height: 85px;
    width: 165px;
}

#logowrapper .logo a {
    margin: 0 12px;
    width: auto;
}
/* VAs */
.interne-va .mod_eventreader, .interne-va .mod_eventlist_ksv {
padding:0;	
}



/* Jubiläum Beginn */
#logowrapper .logo a {
background-image:url('../../files/cto_layout/img/logo2023.svg');
margin-left:-15px!important;
width:180px;
}
.mod_ksvtag {
	font-size:22px!important;
	white-space: nowrap;
}
/* Jubiläum Ende */

#stickyheader .logo {
    height: 80px;
    width: 185px;
    position: static;
    margin: 0;
}

.header {
line-height: 90px!important;
}
.smartmenu .smartmenu-trigger {
height: 90px!important;
}

#header.header, #stickyheader.stickyheader .header.cloned {
    background: rgba(255,255,255,0.8);
    box-shadow: none;
}

.fixed-header #stickyheader.stickyheader .header.cloned {
    line-height: 90px !important;
    background: rgba(255,255,255,0.95);
}

@media only screen and (max-width: 767px) {
.stickyheader .header.cloned .inside {
        height: 55px!important;
    }
    #logowrapper {
        top:8px;
    }
        #logowrapper::after {
        display: none;
        visibility: hidden;
    }
        body #header.header.original .logo {
        min-height: unset;
        height: 85px;
        width: 145px;
    }
}

/* logo KSV End */

/* allgemein */
#ksv-fullwidth #ksv-greenbutton {
 width:100%;
 text-align:center;
}

/* download */
.ce_download_small.block.ksv-small {
    border-color: #007231;
    padding: 10px;
    color: #007231;
}
.ce_download_small.block.ksv-small .ce_download_small_inside {
    border-color: #007231;
}
.ce_download_small.block.ksv-small a::after {
    color: #007231;
    font-size:20px;
}

.mod_downloadList h2 {
    font-size: 1.867rem;
}

.downloadinlist {
    background: #E6E6E6;
    padding: 10px;
}

.withhead .downloadinlist {
	display:block;
}

.withhead .downloadinlist h4 {
	font-size:1.1rem;
}


/* slider */
.ce_revolutionslider_hyperlink {
background: #007231;
border-color: #007231;
}

/* chk slider */
.hyperlink_txt.ce_revolutionslider_hyperlink {
    background: rgba(255,255,255,0.8);;
    color: #007231;
    font-size: 1.3rem;
    border: unset;
}

.ce_revolutionslider .tp-rightarrow::after, .ce_revolutionslider .tp-leftarrow::after {
    background: #007231;
    color: #fff;
}

.ce_revolutionslider .tp-rightarrow:hover::after, .ce_revolutionslider .tp-leftarrow:hover::after {
    color: #cce3d6;
}


.ksv-short {

}
.ksv-shadow {
    text-shadow: 0 0 3px #000;
}
.revtext.ksv-top {

}
.revtext {

    margin-left: 3vw;
}
.revbutton {

    margin-left: 3vw;
}

.teaser-corona .ce_calltoaction {
    background-position: left;
    background-repeat: no-repeat;
    background-size: 70px;
}
.teaser-corona .container {
padding-top:0 !important;
}
.teaser-corona .ce_calltoaction_inside {
padding-top:20px !important;
padding-bottom:20px !important;
}
.teaser-corona .ce_hyperlink a.hyperlink_txt {
margin-bottom:0;
}
.not-found #infobox {
margin:0 !important;
}

/* Bekanntmachungen */
.bekanntmachung .news-content.ksv {
	margin-bottom:5px;
}

/*forms*/
.mod_evr_registration.block h1 {
	display:none;
	visibility:hidden;
}

@media only screen and (max-width: 768px) {
    body .ce_revolutionslider .tp-revslider-mainul .ce_revolutionslider_text.revtext.caption {
    margin-top: -5%;
    }
    body .ce_revolutionslider .ce_revolutionslider_hyperlink.revbutton {
    margin-top: 35px;
    }
    .ksv-short {
    width: 90vw
    }
}
