/* Google Fonts Embed
________________________________________*/
/* raleway-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/raleway-v36-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/raleway-v36-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/raleway-v36-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/raleway-v36-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* tac-one-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Tac One';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/tac-one-v5-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* Common
________________________________________*/
html, body {
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 400;
	font-size: 22px;
	line-height: 36px;
}

body * {
	hyphens: none !important;
	webkit-hyphens: none !important;
}


/* Header
________________________________________*/
.header.cloned {
	box-shadow: 0 0 1px 1px rgba(0,0,0,0.1);
}

.logo a, .mainmenu ul li a {
	font-weight: 500 !important;
}

.ce_revolutionslider_text {
	padding: 10px 30px !important;
	letter-spacing: 0.05rem;
}

.content_page #slider:after {
	width: 100%;
	height: 300px;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: #594d40;
	background: linear-gradient(180deg,rgba(89, 77, 64, 1) 0%, rgba(89, 77, 64, 0) 100%);
	opacity: 0.38;
}


/* Content
________________________________________*/
:root {
	--hyperlink-default-padding-left: 10px;
	--hyperlink-default-padding-right: 10px;
	--hyperlink-default-padding-top: 10px;
	--hyperlink-default-padding-bottom: 10px;
}

h1, h2 {
	font-family: 'Tac One';
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--accentColor);
	text-align: center;
}

h1 {
	font-size: 128px;
	line-height: 96px;
	margin: 8px 0 45px;
}

.home h1 {
	font-family: 'Raleway';
    font-style: normal;
    font-weight: 300;
	font-size: 44px;
	line-height: 54px;
	text-transform: none;
	color: var(--body-color);
	margin: 0 0 62px;
}

h2 {
	font-size: 64px;
	line-height: 50px;
	margin: 8px 0 45px;
}

.ce_text.h-align-center ul li {
	list-style: none;
}

.ce_leadertext.version1 {
	font-weight: 300;
	max-width: 660px;
}

#main a {
  position: relative;
  text-decoration: none;
  font-weight: 700;
  color: var(--body-color);
  letter-spacing: 0.02rem;
}

#main a::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background-color: var(--body-color);
	bottom: 0;
	left: 0;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform .3s ease-in-out;
}

#main .ce_hyperlink a::before, #main .__button__ a:hover::before {
	display: none;
}

#main a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.ce_tabs .tabs.horizontal li {
	font-size: 18px;
}

.ce_tabs .tabs.horizontal ul li:hover span, .ce_tabs .tabs.horizontal ul li.active span {
	color: var(--body-color);
}

.ce_tabs .tabs.horizontal li {
	padding: 5px 35px;
}

.ce_table .table-clean th, .ce_table.table-clean th, .ce_table table td {
	border-bottom: 1px solid #c3c3b7;
}

.ce_table .table-clean th, .ce_table.table-clean th {
	padding: 7px 0;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 0.03rem;
	color: var(--body-color);
}

.ce_table .table-clean td, .ce_table.table-clean td {
	font-size: 1rem;
	padding: 7px 25px;
}

.ce_table .table-clean tr:last-of-type th, .ce_table.table-clean tr:last-of-type th, .ce_table table tr:last-of-type td {
	border-bottom: 0;
}

#main .ce_hyperlink a {
	color: #deded3;
	text-transform: uppercase;
	letter-spacing: 0.03rem;
}

input.submit, button.submit {
	border-radius: 0;
	letter-spacing: 0.03rem;
	font-weight: 700;
	padding-top: var(--hyperlink-default-padding-top);
	padding-bottom: var(--hyperlink-default-padding-bottom);
	font-size: var(--hyperlink-default-font-size);
	line-height: var(--hyperlink-default-line-height);
	color: #deded3;
	text-transform: uppercase;
}

.swiper-pagination {
	display: none;
}

.swiper-gallery-wrapper {
	padding-left: 10px;
	padding-right: 10px;
}

.swiper-slide {
	padding: 10px;
}

.swiper-button-prev {
	left: var(--swiper-navigation-sides-offset,30px);
}

.swiper-button-next {
	right: var(--swiper-navigation-sides-offset,30px);
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
	opacity: 0;
}

.swiper-button-next, .swiper-button-prev {
	color: #fff;
}

.mod_article.gallery.article-pt-xxs > .container {
	padding-top: 20px;
}

.mod_article.gallery.article-pb-xxs > .container {
	padding-bottom: 20px;
}

.datenschutz h2 {
	text-align: left;
	margin-top: 60px;
}

.datenschutz h3 {
	font-size: 1.333rem;
	margin-bottom: 10px;
	margin-top: 30px;
}

h1.small {
	font-size: 96px;
	line-height: 84px;
	text-align: left;
	hyphens: auto !important;
	-webkit-hyphens: auto !important;
}

#main .overlay {
	background:transparent;
	position:absolute;
	width: 100%;
	height: 650px;
	top: 650px;
	margin-top: -650px;
	z-index: 999;
}

#main object {
	width: 100%;
	height: 650px;
	/* -webkit-filter: grayscale(100%); 
	filter: grayscale(100%);
	margin-bottom: -10px;
	border-bottom: 1px solid rgba(0,0,0,0.25); */
}

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


/* Footer
________________________________________*/
.ce_divider_extended.version1 {
	background: #cecece;
	width: 40px;
}

.mw-630 {
	max-width: 630px;
}

#footer p, #footer .h4, #footer p a {
	font-size: 0.727272rem;
	line-height: 1rem;
	margin-bottom: 0;
}

#footer .h3 {
	font-weight: 300;
	margin: 15px 0 50px;
}

#footer a {
	color: #fff !important;
	transition: all .3s ease-in-out;
}

#footer a:hover {
	opacity: 0.7;
	transition: all .3s ease-in-out;
}

.top-link {
	display: none;
}



/* Media Queries
________________________________________*/
@media screen and (min-width: 1601px) {

	.slotholder:after {
		width: 100%;
		height: 300px;
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		background: #594d40;
		background: linear-gradient(180deg,rgba(89, 77, 64, 1) 0%, rgba(89, 77, 64, 0) 100%);
	}
	
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
	
	.smartmenu .smartmenu-trigger .line, .smartmenu .smartmenu-trigger .line:before, .smartmenu .smartmenu-trigger .line:after, .smartmenu-content .smartmenu-close:before, .smartmenu-content .smartmenu-close:after {
		height: 2px;
	}
	
	.smartmenu .smartmenu-trigger .line:before {
		margin-top: 10px;
	}
	
	.smartmenu-content .mod_navigation a.active, .smartmenu-content .mod_navigation a.trail {
		border-bottom: 2px solid rgb(255,255,255);
	}
	
	.smartmenu.open .smartmenu-trigger {
		display: none;
	}
	
}

@media screen and (min-width: 768px) {
	
	.header .mainmenu ul {
		text-align: left;
		margin-left: 306px;
	}
	
	.logobg .container:after {
		position: absolute;
		bottom: 0;
		left: 40px;
		width: 100%;
		max-width: 636px;
		height: 149px;
		content: '';
		background: url('../../Schriftzug-Logo/Salums.svg') no-repeat bottom left;
		background-size: 100% auto;
		opacity: 0.15;
	}
	
	#footer .column:nth-of-type(2), #footer .column:nth-of-type(3) {
		padding-top: 22px;
	}

}

@media screen and (max-width: 767px) {
	
	#mmenu .mod_navigation li a.open, #mmenu .mod_navigation li a.active, #mmenu .mod_navigation li a:focus {
		font-weight: 400;
		border-bottom: 2px solid #fff;
		line-height: 1rem !important;
	}
	
	#mmenu .mod_navigation li a {
		margin-bottom: 20px;
	}
	
	.ce_tabs .tabs.horizontal {
		margin-bottom: 40px;
		border-bottom: 1px solid #fff;
	}
	
	.ce_tabs .tabs.horizontal ul {
		display: inline-flex;
		border-radius: 40px;
		margin-bottom: 40px !important;
	}
	
	.ce_tabs .tabs.horizontal li {
		padding: 5px 25px;
		white-space: nowrap;
	}
	
	h1 {
		font-size: 64px;
		line-height: 54px;
		margin: 8px 0 23px;
	}
	
	.home h1 {
		font-size: 31px;
		line-height: 40px;
		margin: 0 0 42px;
	}
	
	h2 {
		font-size: 45px;
		line-height: 36px;
		margin: 8px 0 23px;
	}
	
	.mobile-left {
		text-align: left;
	}
	
	.ce_gallery .borders li:nth-child(odd), .ce_gallery .borders li figure {
		border: none !important;
	}
	
	.ce_gallery ul.flex-gallery {
		display: inline;
	}
	
	.ce_gallery ul.flex-gallery li {
		flex: none !important;
	}
	
	.ce_gallery .borders li, .ce_gallery .borders li.col_last {
		width: 100%;
	}

}




