

/*************************************************************************/
/*  Theme Custom  */

body {
	font-family: 'Roboto', 'poppins', sans-serif;
	font-weight: 400;
	font-size: clamp(18px,1.6vw,21px);
	line-height: 180%;
	color: #000;
	background-color: #fff;
}

/*Link Farbe */
a {
	color: #222;
}

/* Txt Links im Content */
:is(.res-content p, .res-content li) a:not(.nav-link, .dropdown-item) {
	font-weight: 600;
	color: #4a90e2;
}
 
.brand-color {
	color: #4a90e2; 
}

/* Title clamp */
h1, h2, h3, h4, h5, h6 {
	font-family: 'poppins', sans-serif;
	font-weight: 400;
	line-height: 110%;
}
h1 {
	font-size: clamp(26px, 3.9vw, 300%);

}
h2 {
	font-size: clamp(24px, 3vw, 240%);

}
h3 {
	font-size: clamp(21px, 2.6vw, 180%);
	line-height: 120%;

}
h4 {font-size: clamp(19px, 1.9vw, 110%);} 
h5 {font-size: clamp(18px, 1.5vw, 105%);} 
h6 {font-size: clamp(17px, 1.4vw, 100%);} 

@media only screen and (max-width: 970px) {
	 h1, h2, h3, h4, h5, h6 { 
		 /* hyphens: auto; */
		 /* -webkit-hyphens: auto; */
		}
}

/* Headline grosse Title  */

.headline-title h1  {
	font-size: clamp(240%, 4.2vw, 440%);
	line-height: 110%;
}
.headline-title h2  {
	font-size: clamp(240%, 3.8vw, 360%);
	line-height: 110%;
}
.headline-title h3  {
	font-size: clamp(240%, 3.3vw, 280%);
	line-height: 110%;
}
.res-boxes .headline-title h2,
.res-boxes .headline-title h3,
.res-slider-content .headline-title h2,
.res-slider-content .headline-title h3 {
	font-size: clamp(140%, 2.4vw, 330%);
	line-height: 110%;
}


/* Container */
.container {
    max-width: 1280px;
}
.container-fluid {
    max-width: 80%;
}
.container-small {
	max-width: 900px;
	margin: 0 auto;
}

@media only screen and (max-width: 1400px) {
	.container{	max-width: 90%;	}
	.container-fluid {max-width: 90%;}
}

/* Logo */
.logo {
	padding-top: 70px;
	padding-bottom: 20px;
}

/* Logo Size  */
.logo img {
	width: clamp(100px, 15vw, 280px);
	height: auto;
}
/* Logo Mobile  */
@media only screen and (max-width: 970px) {
	.res-nav .logo-mobile img {
		height: 30px;
	}
}


/*  Fixnav */
.res-fixnav.show .logo {
	padding-top: 15px;
	padding-bottom: 20px;
}
.res-fixnav.show .logo img {
	width: clamp(40px, 2vw, 350px);
	height: auto;
}
/* Fixnav Desktop */
@media only screen and (min-width: 970px) {
	.res-fixnav.show { 
		background: rgba(255,255,255, 1.0);
	}
	.res-fixnav.show .res-nav li a {
		font-size: 90%;
	}
	.res-fix-nav-in-viewport:not(.page-on-top) .res-fixnav {
		box-shadow: 3px 8px 10px rgba(200, 200, 200, 0.3);
	}
}
/* Fixnav Mobile */
@media only screen and (max-width: 970px) {
	
	.res-fix-nav-in-viewport:not(.page-on-top) .res-fixnav {
		background: transparent;
		box-shadow: 3px 8px 10px rgba(200, 200, 200, 0.3);
	}
	.res-fix-nav-in-viewport:not(.page-on-top) .res-fixnav .res-mobile-bar {
		background-color: #fff;	
	}
} 


/* RES Nav */
.res-nav .nav-link {
	font-size: 110%;
	white-space: nowrap;
}

@media only screen and (max-width: 1660px) {
	/*.
	res-nav-section .desktop-nav {
		flex-wrap: wrap;
	}
	*/
	.res-nav .nav-link {font-size: 100%; }
}

/* Abstand Mainnav Desktop clamp */
@media only screen and (min-width: 970px) {
	.res-nav .navbar-expand-md .navbar-nav .nav-link {
		padding-right: clamp(15px, 1.8vw, 35px);
		padding-left: clamp(15px, 1.8vw, 35px);
	}
}

/* Hover */
.res-nav-section li a:hover{
	color: #000;
}

/* active Nav */
	li.active > a.nav-link,
	.res-header li.current-page-ancestor .current-page-ancestor a,
	#burger-menu-nav li.current-page-ancestor .current-page-ancestor a,
	#burger-menu-nav li.current-page-ancestor > a.nav-link,
	.res-navtab .tabs .nav-link.active,
	.res-navtab .tab-links .nav-single-tab.active .nav-link,
	#res-menu-mobile .current-page-ancestor > a, 
	#res-menu-mobile .current-page-ancestor .dropdown-submenu.active > a, 
	#res-menu-mobile .dropdown-submenu.active > a {
		color: #000;
}
/* active Nav in dropdownn */
li.active .current-menu-item > a.dropdown-item {
    color: #eee;
	font-weight: 700;
}



/* Buttons */
.btn {
	padding: 0.7rem 2.4rem;
	border-radius: 6px;
}
.btn-primary{
    background-color: #000;
    color: #eee !important;
	font-weight: 300 !important;
}
.btn-primary:link {}
.btn-primary:visited {}
.btn-primary:hover {}
.btn-primary:active {}
.btn-primary:focus {}

.btn-secondary{
	border: 1px solid #232323;
	background-color: #fff;
	color: #232323;
}

.btn-secondary:link {}
.btn-secondary:visited {}
.btn-secondary:hover {}
.btn-secondary:active {}
.btn-secondary:focus {}

.btn-text-link {
	padding: 0;
	border-radius: 0;
	border: 0;
}
.btn-sm {
    font-size: 85%;
    padding: 0.4rem 1.4rem;
}


/* Footer */

.res-footer {
	border-top: 0px solid #eee;
	background-color: transparent;
}

.res-widget-footer .footer-tile {
	padding-bottom: 15px;
}
.footer-social-box a {
	background: #000;
	border-radius: 100%;
}
.res-widget-footer.footer-social-icon .fa-res-icon svg {
	fill: #fff;
	height: clamp(20px,1.0vw,80px);
}
.res-widget-footer.footer-social-icon span.fa-res-icon,
.res-widget-footer.footer-social-icon span.fa-res-i {
	width: 45px;
	height: 45px;
	color: #fff;
}

/* Blog Singlepage Scroll Bar  */

body.single .res-singlepage-scroll-bar-frame {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: transparent;
}

body.single .res-single-scroll-bar {
  width: 100%;
  height: 5px;
  background: rgba(255,255,255, 0.0);
}

body.single .res-single-scroll-bar-progress {
  height: 5px;
  background: rgba(0,0,0, 1.0);
  width: 0%;
}
body.single.footer-in-viewport .res-single-scroll-bar-progress {
  background: #f1f1f1;
}
/*
@media only screen and (max-width: 970px) {
	body.single .res-single-scroll-bar {height: 3px;}
	body.single .res-single-scroll-bar-progress {height: 3px;}
}
*/


/* Formular  */

.forminator-ui .forminator-required {
	color: #eee;
	opacity: 0.4;
}
.forminator-ui .forminator-label {
    font-size: 90%;
    font-family: inherit;
    font-weight: 300;
	padding-bottom: 0.5rem;
}

.forminator-ui .forminator-checkbox, 
.forminator-ui .forminator-checkbox__label, 
.forminator-ui .forminator-checkbox__label p {
    font-size: 90%;
    font-family: inherit;
    font-weight: 300;
}
/* forminator error-message font */
.forminator-ui.forminator-design--flat span.forminator-error-message {
    color: #000 !important;
	font-weight: 400 !important;
}


/*************************************************************************/
/*   Custom-CSS  */

.marker{
	display: inline-block;
	font-weight: 400;
	font-size: 16px;
	text-transform: uppercase;
	border-bottom: 1px solid #2b52b9;
	color: #2b52b9;
}

.res-style-01 {
}


.elementor-page .res-content .container {
	border: 1px solid orange;
}

