/* 
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: 2rem;
	--spacing-m: 4rem;
	--spacing-l: 6rem;
	--spacing-xl: 8rem;
}

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

/**
 * Footer 
 **/
.rwp-footer-lower a {
	color: #fff;
	
}

.rwp-footer-lower a:hover {
	color: #fff;
	text-decoration: underline;
}

/**
 * Header 
 **/
.elementor-sticky--active {
	background-color: #fff;
	transition: all .5s ease-in-out;
}

.elementor-sticky--active .uael-nav-menu .menu-item a.uael-menu-item {
	color: var(--e-global-color-text) !important;
}

.elementor-sticky--active .uael-nav-menu .current-menu-item a.uael-menu-item {
	color: var(--e-global-color-secondary) !important;	
}

@media (min-width: 1025px) and (max-width: 99999px) {
    .elementor .elementor-sticky--active .elementor-hidden-desktop {
        display: flex;
		transition: all .5s ease-in-out;
    }
}

.uael-nav-menu .menu-item a.uael-menu-item:hover {
	text-decoration: underline;
}

.rwp-header-startseite .uael-nav-menu .current-menu-item a {
	font-weight: 700;
	color: #fff !important;
}

.elementor-sticky--active .uael-nav-menu .current-menu-item a {
	font-weight: 700;
	color: #c04142;
}

/**
 * Startseite - Kontaktformular-Sektion 
 **/
.rwp-section .rwp-contact-form .elementor-form .elementor-form-fields-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(4, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

@media only screen and (max-width: 767px) {
	.rwp-section .rwp-contact-form .elementor-form .elementor-form-fields-wrapper {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		width: 100%;
	}
}

.rwp-section .rwp-contact-form .elementor-form .elementor-form-fields-wrapper div:nth-child(1) {
	grid-area: 1 / 1 / 2 / 2;
}

.rwp-section .rwp-contact-form .elementor-form .elementor-form-fields-wrapper div:nth-child(2) {
	grid-area: 2 / 1 / 3 / 2;
}

.rwp-section .rwp-contact-form .elementor-form .elementor-form-fields-wrapper div:nth-child(3) {
	grid-area: 1 / 2 / 3 / 3;
}

.rwp-section .rwp-contact-form .elementor-form .elementor-form-fields-wrapper div:nth-child(4) {
	grid-area: 3 / 2 / 4 / 3;
}

.rwp-section .rwp-contact-form .elementor-form .elementor-form-fields-wrapper div:nth-child(5) {
	grid-area: 4 / 2 / 5 / 3;
}

.rwp-section .rwp-contact-form .elementor-field {
	padding-left: 0;
    padding-right: 0;	
}

.rwp-section .rwp-contact-form .elementor-field-subgroup .elementor-field-option {
	display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.rwp-section .rwp-contact-form #form-field-checkbox {
	width: 1.2rem;
	height: 1.2rem;
	margin-top: 1px;
}

.rwp-section .rwp-contact-form .elementor-field-option label {
	font-size: var(--fs-s) !important;
	color: #000 !important;
	padding-left: .5rem;
}

.rwp-section .rwp-contact-form .elementor-field-option label a {
	color: #000;
	text-decoration: underline;
}

.rwp-section .rwp-contact-form .elementor-field-type-submit {
	align-items: flex-start;
}

.rwp-section .rwp-contact-form .elementor-field-type-acceptance {
	margin-bottom: 0; 
    align-items: flex-start;
}

.rwp-section .rwp-contact-form .elementor-field {
	padding: 0.5rem;
}

/**
 * Startseite - Kundenstimmen-Sektion 
 **/
.rwp-kundenstimmen-slider .elementor-swiper-button-prev .eicon-chevron-left:before {
	content: url("/wp-content/uploads/Down-Arrow.png");
	width: 2rem;
	height: 2rem;
	position: relative;
	display: flex;
}

.rwp-kundenstimmen-slider .elementor-swiper-button-next .eicon-chevron-right:before {
	content: url("/wp-content/uploads/Down-Arrow-1.png");
	width: 2rem;
	height: 2rem;
}

.rwp-kundenstimmen-slider .elementor-main-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (min-width: 1370px) {
	.rwp-kundenstimmen-slider .elementor-swiper-button-prev {
		left: -2.5rem !important;
	}

	.rwp-kundenstimmen-slider .elementor-swiper-button-next {
		right: -2.5rem !important;
	}
}

@media only screen and (max-width: 767px) {
	.rwp-kundenstimmen-slider .elementor-swiper-button-prev .eicon-chevron-left:before,
	.rwp-kundenstimmen-slider .elementor-swiper-button-next .eicon-chevron-right:before {
		width: 1rem !important;
		height: 1rem !important;
	}
}

/**
 * Startseite - Leistungen-Sektion 
 **/
@media only screen and (min-width: 768px) {
	.rwp-leistungen-box {
		max-height: 23.75rem;
		transition: all 0.5s ease-in-out;
		position: relative;
		overflow: hidden;
		    height: 22rem !important;
	} 
	
	.rwp-leistungen-box .rwp-leistungen-box--text {
		font-size: 1rem;
   		line-height: 1.5;
		max-height: 0;
		transition: max-height 0.2s ease;
		overflow: hidden;
	}
	
	.rwp-leistungen-box:hover .rwp-leistungen-box--text {
		max-height: 7.5em;
	}
	
	.rwp-leistungen-box .elementor-widget-image {
		position: absolute;
   		top: 0;
		z-index: 0;
	}
	
	.rwp-leistungen-box .rwp-inhaltscontainer-leitsungen-box {
		z-index: 1;
	}
}

@media only screen and (max-width: 767px) {
	.rwp-leistungen-box {
		height: 100%;
	}
	
	.rwp-inhaltscontainer-leitsungen-box {
		min-height: 210px;
	}
	
	.rwp-inhaltscontainer-leitsungen-box .e-con-inner {
		justify-content: center !important;
	}
}

/* Detailseite List-item */
.rwp-detailseite-list ul {
	list-style-type: square;
	
	display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rwp-detailseite-list ul li::marker {
	color: #C04142;
}

.rwp-detailseite-list ul li strong {
	width: 100%;
    display: flex;
    flex-direction: column;
}