/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/**
 * Resets 
 **/

ul,ol {
	margin-bottom: 1rem;
}

.elementor-widget-text-editor p:last-of-type,
.elementor-widget-text-editor ul:last-child,
.elementor-widget-text-editor ol:last-child {
	margin-bottom: 0;
}

/* Fix Google Search Console "mobile usability issues" */
:where(body, iframe, pre, img, svg, video, canvas, select) {
	max-width: 100%;
	overflow: auto;
	word-break: break-word;
}

/* Global Variables */
:root {
	/* Breakpoint Max-Widths */
	--breakpoint-max-small: 479px;
	--breakpoint-max-phone: 767px;
	--breakpoint-max-tablet: 1024px;
	--breakpoint-max-laptop: 1439px;
	--breakpoint-max-large: 1599px;
	
	/* Breakpoint Min-Widths */
	--breakpoint-min-small: 480px;
	--breakpoint-min-phone: 768px;
	--breakpoint-min-tablet: 1025px;
	--breakpoint-min-laptop: 1440px;
	--breakpoint-min-large: 1600px;
}


/**
 * Utils 
 **/
.rwp-section {
	--spacing-s: 1rem;
	--spacing-m: 2rem;
	--spacing-l: 4rem;
	--spacing-xl: 8rem;
}

@media only screen and (max-width: 1024px) {
	.rwp-section {
		--spacing-s: 0.75rem;
		--spacing-m: 1.5rem;
		--spacing-l: 3rem;
		--spacing-xl: 6rem;
	}
}

@media only screen and (max-width: 767px) {
	.rwp-section {
		--spacing-s: 0.5rem;
		--spacing-m: 1rem;
		--spacing-l: 2rem;
		--spacing-xl: 4rem;
	}
}

/* Paddings für Sektionen */
.rwp-section.p-s {
	padding-top: var(--spacing-s);
	padding-bottom: var(--spacing-s);
}
.rwp-section.p-t-s {
	padding-top: var(--spacing-s);
}
.rwp-section.p-b-s {
	padding-bottom: var(--spacing-s);
}
.rwp-section.p-m {
	padding-top: var(--spacing-m);
	padding-bottom: var(--spacing-m);
}
.rwp-section.p-t-m {
	padding-top: var(--spacing-m);
}
.rwp-section.p-b-m {
	padding-bottom: var(--spacing-m);
}
.rwp-section.p-l {
	padding-top: var(--spacing-l);
	padding-bottom: var(--spacing-l);
}
.rwp-section.p-t-l {
	padding-top: var(--spacing-l);
}
.rwp-section.p-b-l {
	padding-bottom: var(--spacing-l);
}
.rwp-section.p-xl {
	padding-top: var(--spacing-xl);
	padding-bottom: var(--spacing-xl);
}
.rwp-section.p-t-xl {
	padding-top: var(--spacing-xl);
}
.rwp-section.p-b-xl {
	padding-bottom: var(--spacing-xl);
}


/**
 * Colors 
 **/
/* Dark */
.rwp-section.u-dark {
	background-color: var(--e-global-color-9d49d42);
}

.rwp-section.u-dark h1, 
.rwp-section.u-dark h2, 
.rwp-section.u-dark h3, 
.rwp-section.u-dark h4, 
.rwp-section.u-dark h5, 
.rwp-section.u-dark h6 {
	color: var(--e-global-color-74a8827); 
}

.rwp-section.u-dark p { 
	color: var(--e-global-color-8c2d930); 
}

/* Light */
.rwp-section.u-light {
	background-color: var(--e-global-color-564d32a);
}

.rwp-section.u-light h1, 
.rwp-section.u-light h2, 
.rwp-section.u-light h3, 
.rwp-section.u-light h4, 
.rwp-section.u-light h5, 
.rwp-section.u-light h6 {
	color: var(--e-global-color-f996b1b); 
}

.rwp-section.u-light p { 
	color: var(--e-global-color-583cade);  
}


/**
 * H2 Linie 
 **/
/* Dark */
.rwp_h2_linie_dunkel p::before {
	content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: black;
    z-index: 0;
    top: 1.5rem;
    transition: all .4s ease-in-out;
}

/* Light */
.rwp_h2_linie_hell p::before {
	content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: white;
    z-index: 0;
    top: 1.5rem;
    transition: all .4s ease-in-out;
}