/*
* Created by CeLa
* Copyright by CeLa
* Main Theme CSS
*/

/* Poppins */
@font-face {
	font-display: swap;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/poppins-300.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/poppins-regular.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	src: url('../fonts/poppins-500.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	src: url('../fonts/poppins-600.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Smooch Sans';
	font-style: normal;
	font-weight: 600;
	src: url('../fonts/smooch-sans-600.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Smooch Sans';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/smooch-sans-700.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Smooch Sans';
	font-style: normal;
	font-weight: 800;
	src: url('../fonts/smooch-sans-800.woff2') format('woff2');
}



/*
 * Default styles
 */
:root {
	--pri-font: 'Poppins';
	--sec-font: 'Smooch Sans';
	
	--base-color: #393939;
	--pri-color: #30c6d6;
	--sec-color: #a427ba;
	--thd-color: #edf8fc;
}

/*
 * Base styles
 */
html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
	color: var(--base-color);
	font-size: 1.125rem;
	font-family:var(--pri-font);
	font-weight: 300;
}

html {
	background-color: #000 !important;
	background-image: url(../images/main-bg.webp);
	background-repeat: no-repeat;
	background-position: 0 50%;
	background-size: cover;
	background-attachment: fixed;
}

body {
	background-color: transparent;
	color: #eee;
}

/*
 * Content sizes
 */
.sppb-column.content-xs,
.sppb-column.content-sm,
.sppb-column.content-md,
.sppb-column.content-lg,
.sppb-column.content-xl {
	margin: 0 auto;
}
.sppb-column.content-xs {
	max-width: 480px;
}
.sppb-column.content-sm {
	max-width: 600px;
}
.sppb-column.content-md {
	max-width: 768px;
}
.sppb-column.content-lg {
	max-width: 992px;
}
.sppb-column.content-xl {
	max-width: 1140px;
}
/*
 * Headline styles
 */
h1, h2, h3, h4, h5 {
	font-family: var(--sec-font);
	font-weight: 600;
	color: #fff;
}
h1 {font-size: 4rem}
h2 {font-size: 3rem}
h3 {font-size: 2.25rem}
h4 {font-size: 2rem}
h5 {font-size: 1.5rem}

.sppb-addon-text-block.heading > .sppb-addon-title {
}
.sppb-addon-text-block.heading > h2.sppb-addon-title {
}
.sppb-section.heading > .sppb-row-container > .sppb-section-title .sppb-title-heading,
.sppb-section.heading > .sppb-container-inner > .sppb-container > .sppb-section-title .sppb-title-heading {
}
.sppb-section.heading > .sppb-row-container > .sppb-section-title .sppb-title-subheading {
}
.sppb-addon-header.heading h2.sppb-addon-title {
}

/*
 * Text styles
 */
.uppercase {
	text-transform: uppercase;
}
.lowercase {
	text-transform: lowercase;
}
.base-text .sppb-addon-content {
	font-size: 1.125rem;
}
@media(min-width: 768px){
	.two-column > .sppb-addon-content {
		column-count: 2;
	}
}
.sppb-addon-text-block.text-300 > .sppb-addon-content {
	font-weight: 300;
}
.sppb-addon-text-block.text-md > .sppb-addon-content {
	font-size: 1.35rem;
}
.sppb-addon-text-block.text-lg > .sppb-addon-content {
	font-size: 1.75rem;
}

/* List styles */
ul.list-arrow,
ul.list-dots,
ul.list-check,
ul.list-plus {
	list-style: none;
	margin: 0;
	padding: 0;
}
ul.list-arrow li,
ul.list-dots li,
ul.list-check li,
ul.list-plus li {
	position: relative;
	padding-left: 30px;
}
ul.list-arrow li:before,
ul.list-dots li:before,
ul.list-check li:before,
ul.list-plus li:before {
	position: absolute;
	top: 5px;
	left: 2px;
	line-height: 1;
	color: var(--sec-color);
}
ul.list-arrow li:before {
	content: "\00BB";
	font-weight: 800;
	font-size: 1.25rem;
}
ul.list-dots li:before {
	content: "\2022";
	font-weight: 800;
	font-size: 1.25rem;
}
ul.list-check li:before {
	content: "\2714";
	position: absolute;
	top: 6px;
}
ul.list-plus li:before {
	content: "\271A";
	position: absolute;
	top: 6px;
	font-size: 1rem;
}
/*
 * Colors
 */
.pri-color {
	color: var(--pri-color);
}
.sec-color {
	color: var(--sec-color);
}


/*
 * Template styles
 */
@media (min-width: 1200px) {
    .sppb-row-container {
        max-width: 1320px !important;
    }
}
@media (min-width: 992px) {
	#offcanvas-toggler {
		display: none !important;
	}
}
.offcanvas-overlay {
	display: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.boxed > .sppb-row-container {
	padding: 45px;
	background-color: rgba(0,0,0,.75);
}

/* 
 * Header
 */
#sp-header {
	box-shadow: none;
}
#sp-header:not(.header-sticky) {
	background-color: rgba(0,0,0,.75);
}
#sp-header.header-sticky {
	background: rgb(164,39,186);
	background: linear-gradient(
		90deg, 
		rgba(164,39,186,1) 20%, 
		rgba(48,198,214,1) 100%
	);
}
@media (max-width: 992px) {
	#sp-header {
	}
}
#sp-logo .logo {
	text-transform: uppercase;
}
#sp-logo .logo:before {
	content: '';
	display: inline-block;
	margin-right: 10px;
	height: calc(100% - 30px);
	margin-top: 15px;
	margin-bottom: 15px;
	aspect-ratio: 1/1;
	background-image: url(../images/al-eventverleich-sign.png);
	background-repeat: no-repeat;
	background-size: auto 100%;
}
#sp-logo .logo,
#sp-logo .logo * {
	font-family: var(--sec-font);
	font-size: 1.75rem !important;
}
#sp-logo .logo a,
#sp-logo .logo a:visited {
	color: rgba(255,255,255,1);
}
#sp-logo .logo a:hover,
#sp-logo .logo a:active,
#sp-logo .logo a:focus {
	color: rgba(255,255,255,.6);
}

#sp-footer {
	
}

/*
 * Footer styles
 */
#sp-footer {
	background-color: rgba(0,0,0,.75);
}
#sp-footer > .container .container-inner {
	border: 0;
}
.sp-scroll-up,
.sp-scroll-up:visited {
	background: rgb(164,39,186);
	background: linear-gradient( 
		90deg, 
		rgba(164,39,186,1) 20%, 
		rgba(48,198,214,1) 100%
	);
} 
.sp-scroll-up:hover, 
.sp-scroll-up:active, 
.sp-scroll-up:focus {
	color: #fff;
	background: var(--sec-color);
}

/*
 * Navbar styles
 */
#sp-menu nav.sp-megamenu-wrapper ul.sp-megamenu-parent > li > a {
	font-family: var(--sec-font);
	font-size: 1.75rem;
}
#sp-menu nav.sp-megamenu-wrapper ul.sp-megamenu-parent > li > a,
#sp-menu nav.sp-megamenu-wrapper ul.sp-megamenu-parent > li > a:visited {
	color: rgba(255,255,255,1);
}
#sp-menu nav.sp-megamenu-wrapper ul.sp-megamenu-parent > li > a:hover,
#sp-menu nav.sp-megamenu-wrapper ul.sp-megamenu-parent > li > a:active,
#sp-menu nav.sp-megamenu-wrapper ul.sp-megamenu-parent > li > a:focus {
	color: rgba(255,255,255,.6);
}
#offcanvas-toggler .burger-icon span {
	background-color: #fff;
}

/*
 * Branding section
 */
@media(min-width: 320px){
	.branding .sppb-addon-single-image-container {
		max-width: 280px;
	}
}

/*
 * Contact section
 */
#contact-form .formControls {
	padding-bottom: 15px !important;
}
#contact-form .form-control {
	padding-top: 15px;
	padding-bottom: 10px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	background-color: rgba(255,255,255,.5);
	color: #fff;
}
#contact-form ::placeholder {
	font-size: 0.9rem !important;
	color: rgba(255,255,255,.5);
}
#contact-form [data-rsfp-hashcash] {
	border: 0 !important;
	background-color: transparent !important;
	color: #eee;
}
#contact-form .btn {
	padding-top: 15px;
	padding-bottom: 15px;
	display: block !important;
	width: 100%;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
#contact-form .btn-primary {
	background: rgb(164,39,186);
	background: linear-gradient(
		90deg, 
		rgba(164,39,186,1) 0%, 
		rgba(48,198,214,1) 100%
	);
	text-transform: uppercase;
	font-family: var(--sec-font);
	font-size: 1.5rem;
	border: 0;
	transition: background ease-in-out .25s;
}
#contact-form .btn-primary:hover {
	background: rgb(164,39,186);
	background: linear-gradient(
		90deg, 
		rgba(164,39,186,1) 20%, 
		rgba(48,198,214,1) 100%
	);
}


.btn-group-contact .sppb-icons-group-list li a {
	border: 1px solid rgba(0,0,0,.85);
	width: 75px;
	height: 75px;
	line-height: 75px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.btn-group-contact .sppb-icons-group-list li a {
	color: #fff;
	background-color: rgba(0,0,0,.75);
}
.btn-group-contact .sppb-icons-group-list li a:hover {
	color: #fff;
	background-color: rgba(0,0,0,1);
}