@charset "UTF-8";

/*
Theme Name: Standart Theme G&G Websolutions
Theme URI: https://gg-websolutions.de/
Author: Fabian Gerl
Author URI: https://gg-websolutions.de/
Description: This is the main-theme of G&G-Websolutions
Version: 2.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: G+G
*/

@import url('../wp-content/themes/Standart%20Theme/fonts/font.css');
@import url('fonts/fonts.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html :where(.wp-block) {
    max-width: none;
}

.editor-styles-wrapper :where(:not(.is-layout-flex,.is-layout-grid))>.wp-block {
    margin: 0;
}

.editor-visual-editor__post-title-wrapper {
    display: none;
}

html {
    font-family: "Open Sans", sans-serif;
}

header {
    width: 100%;
    height: 7rem;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    z-index: 11;
}

header > div {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
}

.custom-logo-link {
    position: absolute;
    height: 5rem;
    width: auto;
    top: 1rem;
    left: 1rem;
    z-index: 100;
}

.custom-logo-link img {
    height: 5rem;
    width: auto;
}

.header-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    padding: 0.5rem 0;
}

.header-contact ul {
    list-style: none;
}

.header-contact li {
    display: inline;
    margin: 0 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.header-phone::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1rem;
    width: 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('img/telephone.png');
}

.header-mail::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1rem;
    width: 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('img/email.png');
}

.header-opening-time::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1rem;
    width: 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('img/time.png');
}

header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.215rem 0;
}

header nav ul {
    list-style: none;
}

header nav li {
    display: inline;
	margin: 0 2rem;
}

header nav a {
    color: #000000;
    text-decoration: none;
    transition: 0.5s;
    opacity: 1;
}

header nav a:hover {
    opacity: 0.5;
}

header .current-menu-item a {
    color: #0066CC;
    font-weight: 500;
}

header .menu > li {
	position: relative;
}

header .sub-menu {
	display: none;
	position: absolute;
    top: 0;
	left: 0;
	background-color: #ffffff;
	width: 20rem;
	margin: 1.3rem;
	color: #000000;
}

header .menu > li:hover .sub-menu {
	display: block;
}

header .sub-menu li {
	display: block;
	margin:  1rem;
}

header .sub-menu li a {
	color: #000000;
	font-weight: 400;
}

header .sub-menu .current-menu-item a {
	color: #0066CC !important;
	font-weight: 600;
}

.burger-menu {
	display: none;
}

@media (max-width: 60rem) {
    .header-contact,
    header nav {
        display: none;
    }
	
    .active {
        display: flex !important;
        position: absolute;
        top: 0;
        left: 0;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100vh;
        z-index: 11;
        background-color: white;
    }

    .active li {
        display: block;
        text-align: center;
        padding: 0.5rem 0;
    }
	
	header .sub-menu {
		position: relative;
		display: block;
		top: 0;
		left: 0;
		margin: 0.5rem auto;
		width: 80%;
	}
	
	header .sub-menu li { 
		margin: 0.2rem 1rem;
		padding: 0;
		font-size: 0.9rem;
		display: inline;
	}

    .burger-menu {
        width: 2rem;
        height: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        position: absolute;
        right: 1.5rem;
        top: 2.25rem;
    }

    .burger-line {
        width: 100%;
        height: 4px;
        background-color: #000000;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
	
    .burger-menu.open {
        z-index: 101;
    }

    .burger-menu.open .line1 {
        transform: translate(0px, 10px) rotate(45deg);
		background-color: #000000;
    }

    .burger-menu.open .line2 {
        opacity: 0;
		background-color: #000000;
    }

    .burger-menu.open .line3 {
        transform: translate(0px, -10px) rotate(-45deg);
		background-color: #000000;
    }
	
	.active a {
		color: #000000;
	}
}

footer {
    height: 3rem;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80rem;
    margin: 0 auto;
    font-size: 0.75rem;
    position: relative;
}

footer > * {
    flex: 1;
    text-align: center;
}

footer .menu-footer-container {
    display: inline;
}

footer ul {
    list-style: none;
    display: inline;
}

footer li {
    display: inline;
    margin-right: 1.5rem;
}

footer li a,
footer .a-cookie {
    text-decoration: none;
    color: #000000;
    transition: 0.5s;
    opacity: 1;
}

footer li a:hover,
footer .a-cookie:hover {
    opacity: 0.5;
}

footer .a-gg {
    text-decoration: none;
    color: #0066CC;
    font-weight: 600;
    transition: 0.5s;
    opacity: 1;
}

footer .a-gg:hover {
    opacity: 0.5;
}

.call-to-action-button a {
    position: fixed;
    bottom: 5rem;
    right: 5rem;
    background-color: #0066CC;
    padding: 1rem 2rem;
    color: #ffffff !important;
    text-decoration: none !important;
    text-transform: uppercase;
    border-radius: 2rem;
    transition: 0.5s;
	z-index: 10;
}

.call-to-action-button a:hover  {
    opacity: 0.7;
}

@media (max-width: 80rem) {
    footer {
        display: block;
        width: auto;
        height: auto;
        padding: 0.5rem 0;
    }

    footer > * {
        margin: 0.5rem 0;
    }
}

main {
    min-height: calc(100vh - 3rem - 7rem);
    max-width:110rem;
    width: 100%;
    margin: 7rem auto 0 auto;
    /*hyphens: auto;*/
}

.editor-styles-wrapper {
    max-width: 80rem !important;
    width: 100% !important;
    margin: 0 auto !important;
    hyphens: auto !important;
}

main h1 {
    font-size: 3rem;
    margin:  0 0 1.5rem 0;
    font-weight: 600;
}

.editor-styles-wrapper h1 {
	font-size: 3rem !important;
    margin:  0 0 1.5rem 0 !important;
    font-weight: 600 !important;
}

main h2 {
    font-size: 2rem;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
}

.editor-styles-wrapper h2 {
	font-size: 2rem !important;
    margin: 0 0 1.5rem 0 !important;
    font-weight: 600 !important;
}

main h3 {
    font-size: 1.2rem;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
}

.editor-styles-wrapper h3 {
	font-size: 1.2rem !important;
    margin: 0 0 1.5rem 0 !important;
    font-weight: 600 !important;
}

main h4 {
    font-size: 1.5rem;
    margin: 0 0 1.2rem 0;
    font-weight: 500;
}

.editor-styles-wrapper h4 {
	font-size: 1.5rem !important;
    margin: 0 0 1.2rem 0 !important;
    font-weight: 500 !important;
}

main p {
    font-size: 1rem;
    margin: 0 0 1rem 0;
    font-weight: 400;
}

.editor-styles-wrapper p {
	font-size: 1rem !important;
    margin: 0 0 1rem 0 !important;
    font-weight: 400 !important;
}

main a {
    color: #000000;
    transition: 0.5s;
    opacity: 1;
}

.editor-styles-wrapper a {
	color: #000000 !important;
    transition: 0.5s !important;
    opacity: 1 !important;
}

main a:hover {
    opacity: 0.5;
}

.editor-styles-wrapper a:hover {
	opacity: 0.5 !important; 
}

main ul {
    margin-left: 1.5rem;
}

.editor-styles-wrapper ul {
	margin-left: 1.5rem !important;
}

main section {
    margin-bottom: 5rem;
}

.editor-styles-wrapper section {
	margin-bottom: 5rem !important;
}

main .wp-block-cover {
    min-height: 45rem;
}

.editor-styles-wrapper .wp-block-cover {
	min-height: 45rem !important;
}

main .wp-block-group__inner-container {
    width: 80%;
    margin: auto;
}

.editor-styles-wrapper .wp-block-group__inner-container {
	width: 80% !important;
    margin: auto !important;
}

main .wp-block-button__link {
    background-color: #0066CC;
    border-radius: 0.3rem;
	margin-bottom: 3.1rem;
}

.editor-styles-wrapper .wp-block-button__link {
	background-color: #0066CC !important;
    border-radius: 0.3rem !important;
	margin-bottom: 3.1rem !important;
}

main .wp-block-button__link:hover {
    opacity: 0.8;
}

.editor-styles-wrapper .wp-block-button__link:hover {
	opacity: 0.8 !important;
}

main .wp-block-group__inner-container:has(.wp-block-cover),
main .wp-block-group__inner-container:has(.wp-block-columns) {
    width: 100%;
}

.editor-styles-wrapper .wp-block-group__inner-container:has(.wp-block-cover),
.editor-styles-wrapper .wp-block-group__inner-container:has(.wp-block-columns) {
	width: 100% !important;
}

main .wp-block-cover .wp-block-cover__inner-container {
    width: 80%;
}

.editor-styles-wrapper .wp-block-cover .wp-block-cover__inner-container {
	width: 80% !important;
}

main .wp-block-cover h1 {
    font-size: 5rem !important;
    margin: 1.5rem 0;
}

.editor-styles-wrapper .wp-block-cover h1 {
	font-size: 5rem !important;
    margin: 1.5rem 0 !important;
}

main .wp-block-cover h2 {
    padding-left: 10rem;
}

.editor-styles-wrapper .wp-block-cover h2 {
	padding-left: 10rem !important;
}

main .wp-block-columns {
    width: 80%;
    margin: 0 auto 3rem auto;
    gap: 3rem; /*Hier wurde das Simikolon vergessen*/
}

main .wp-block-columns a {
	text-decoration: none !important;
}

.editor-styles-wrapper .wp-block-columns {
	width: 80% !important;
    margin: 0 auto 3rem auto !important;
    gap: 3rem !important;
}

main section ul {
    margin-bottom: 2rem;
}

.editor-styles-wrapper section ul {
	margin-bottom: 2rem !important;
}

main section:first-of-type .wp-block-group div:has(.wp-block-list) {
    display: flex;
    justify-content: end;
    width: 100%;
    margin-bottom: 2rem;
}

.editor-styles-wrapper section:first-of-type .wp-block-group div:has(.wp-block-list) {
	display: flex !important;
    justify-content: end !important;
    width: 100% !important;
    margin-bottom: 2rem !important;
}

main section:first-of-type li {
    font-size: 1.2rem;
}

.editor-styles-wrapper section:first-of-type li {
	font-size: 1.2rem !important;
}

main section ul {
    list-style: none;
    padding-left: 0;
}

.editor-styles-wrapper section ul {
	list-style: none !important;
    padding-left: 0 !important;
}

main section:last-of-type {
    margin-bottom: 2rem !important;
}

.editor-styles-wrapper section:last-of-type {
	margin-bottom: 2rem !important;
}

main section li {
    position: relative;
    padding-left: 2rem; /* Platz für das Icon */
    padding-bottom: 0.3rem;
}

.editor-styles-wrapper section li {
	position: relative !important;
    padding-left: 2rem !important;
    padding-bottom: 0.3rem !important;
}

main section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;       /* Icon-Breite anpassen */
  height: 1.5rem;      /* Icon-Höhe anpassen */
  background-image: url("img/gruppe2.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.editor-styles-wrapper section li::before {
	content: "" !important;
  	position: absolute !important;
  	left: 0 !important;
  	top: 50% !important;
  	transform: translateY(-50%) !important;
  	width: 1.5rem !important;       /* Icon-Breite anpassen */
  	height: 1.5rem !important;      /* Icon-Höhe anpassen */
  	background-image: url("img/gruppe2.png") !important;
  	background-size: contain !important;
  	background-repeat: no-repeat !important;
}

main section:last-of-type .wp-block-cover {
    margin-bottom: 0;
    min-height: 30rem;
}

.editor-styles-wrapper section:last-of-type .wp-block-cover {
	margin-bottom: 0 !important;
    min-height: 30rem !important;
}

main section:last-of-type .wp-block-cover .wp-block-cover__inner-container {
    width: 100%;
}

.editor-styles-wrapper section:last-of-type .wp-block-cover .wp-block-cover__inner-container {
	width: 100% !important;
}

main section:last-of-type .wp-block-cover .wp-block-cover__image-background {
    object-fit: contain;
    object-position: 100% 100% !important;
}

.editor-styles-wrapper section:last-of-type .wp-block-cover .wp-block-cover__image-background {
	object-fit: contain !important;
    object-position: 100% 100% !important;
}

main section:last-of-type .wp-block-cover .wp-block-cover__image-background {
    height: 25rem;
    align-self: end;
}

.editor-styles-wrapper section:last-of-type .wp-block-cover .wp-block-cover__image-background {
	height: 25rem !important;
    align-self: end !important; 
}

main section:last-of-type h2 {
    padding: 0;
}

.editor-styles-wrapper section:last-of-type h2 {
	padding: 0 !important;
}

main .wp-block-columns:has(.wpcf7) {
    gap: 0;
}

main section > div > h2 {
    margin: 0 auto 1.5rem auto;
}

.editor-styles-wrapper section > div > h2 {
	margin: 0 auto 1.5rem auto !important;
}

main .icons-services h2 {
    width: 80%;
}

.editor-styles-wrapper .icons-services h2 {
	width: 80% !important;
}

.wp-block-cover {
    position: relative;
    overflow: hidden;
}

.editor-styles-wrapper .wp-block-cover {
	position: relative !important;
    overflow: hidden !important;
}

.hero-overlay-text {
    position: absolute;
    top: 13rem;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8vw;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 1;
    color: transparent;
    -webkit-text-stroke-width: 0.2rem;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.4);
}

.editor-styles-wrapper .hero-overlay-text {
	position: absolute !important;
    top: 13rem !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 8vw !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    z-index: 1 !important;
    color: transparent !important;
    -webkit-text-stroke-width: 0.2rem !important;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.4) !important;
}

.wp-block-cover__inner-container {
    position: relative;
    z-index: 2;
}

.editor-styles-wrapper .wp-block-cover__inner-container {
	position: relative !important;
    z-index: 2 !important;
}

.icons-services {
    display: flex;
    justify-content: center;
    align-items: stretch !important;
}

.editor-styles-wrapper .icons-services {
	display: flex !important;
    justify-content: center !important;
    align-items: stretch !important;
}

.icons-services a {
    text-decoration: none;
}

.editor-styles-wrapper .icons-services a {
	text-decoration: none !important;
}

.icons-services .wp-block-column {
    padding: 2rem;
    border-radius: 0.4rem;
}

.editor-styles-wrapper .icons-services .wp-block-column {
	padding: 2rem !important;
    border-radius: 0.4rem !important;
}

.icons-services .wp-block-column figure {
    display: flex;
    justify-content: center;
}

.editor-styles-wrapper .icons-services .wp-block-column figure {
	display: flex !important;
    justify-content: center !important;
}

.icons-services .wp-block-column img {
    height: 3rem;
    width: auto;
    margin-bottom: 1rem;
}

.editor-styles-wrapper .icons-services .wp-block-column img {
	height: 3rem !important;
    width: auto !important;
    margin-bottom: 1rem !important;
}

.icons-services .wp-block-column  h3 {
    font-size: 1.4rem;
}

.editor-styles-wrapper .icons-services .wp-block-column  h3 {
    font-size: 1.4rem !important;
}

.item-feauters  h2 {
    width: 80%;
    margin-bottom: 3rem;
}

.editor-styles-wrapper .item-feauters  h2 {
    width: 80% !important;
    margin-bottom: 3rem !important;
}

.item-feauters > div > p {
    padding-top: 0 !important;
}

.editor-styles-wrapper .item-feauters > div > p {
    padding-top: 0 !important;
}

.item-feauters .wp-block-buttons {
    margin: 2rem 10%;
}

.editor-styles-wrapper .item-feauters .wp-block-buttons {
    margin: 2rem 10% !important;
}

.item-feauters .wp-block-column {
    background-color: #ffffff;
    padding-bottom: 2rem;
    border-radius: 5%;
    overflow: hidden;
    box-shadow: 0px 0px 5px silver;
}

.editor-styles-wrapper .item-feauters .wp-block-column {
    background-color: #ffffff !important;
    padding-bottom: 2rem !important;
    border-radius: 5% !important;
    overflow: hidden !important;
    box-shadow: 0px 0px 5px silver !important;
}

.item-feauters h3 {
    padding: 1rem 10% 0 10%;
    font-size: 1.2rem;
}

.editor-styles-wrapper .item-feauters h3 {
    padding: 1rem 10% 0 10% !important;
    font-size: 1.2rem !important;
}

.item-feauters p {
    padding: 1rem 10% 0 10%;
    font-size: 0.9rem;
}

.editor-styles-wrapper .item-feauters p {
    padding: 1rem 10% 0 10% !important;
    font-size: 0.9rem !important;
}

.review-section {
    margin-bottom: 0;
}

.editor-styles-wrapper .review-section {
    margin-bottom: 0 !important;
}

.review-section h2 {
    width: 80%;
    margin: 0 auto 3rem auto;
}

.editor-styles-wrapper .review-section h2 {
    width: 80% !important;
    margin: 0 auto 3rem auto !important;
}

.review-section p {
    width: 80%;
    margin: 0 auto 2rem auto;
}

.editor-styles-wrapper .review-section p {
    width: 80% !important;
    margin: 0 auto 2rem auto !important;
}

.inline-list-left {
    width: 80%;
    margin: auto;
}

.editor-styles-wrapper .inline-list-left {
    width: 80% !important;
    margin: auto !important;
}

.inline-list-left li {
    display: inline;
    margin-right: 2rem;
}

.editor-styles-wrapper .inline-list-left li {
    display: inline !important;
    margin-right: 2rem !important;
}

.editor-styles-wrapper .inline-list-left li > div {
	display: inline !important;
}

.inline-list-right {
    width: 80%;
    margin: auto;
    text-align: right;
}

.editor-styles-wrapper .inline-list-right {
    width: 80% !important;
    margin: auto !important;
    text-align: right !important;
}

.inline-list-right li {
    display: inline;
    margin-left: 2rem;
}

.editor-styles-wrapper .inline-list-right li {
    display: inline !important;
    margin-left: 2rem !important;
}

.editor-styles-wrapper .inline-list-right li > div {
	display: inline !important;
}

.small-list .wp-block-group__inner-container {
    margin: 0;
    padding: 1rem;
}

.editor-styles-wrapper .small-list .wp-block-group__inner-container {
    margin: 0 !important;
    padding: 1rem !important;
}

.small-list ul {
    margin-left: 0;
}

.editor-styles-wrapper .small-list ul {
    margin-left: 0 !important;
}

.small-list li {
    padding-left: 0;
}

.editor-styles-wrapper .small-list li {
    padding-left: 0 !important;
}

.small-list li::before {
    display: none;
}

.editor-styles-wrapper .small-list li::before {
    display: none !important;
}

.has-background-color .small-list .wp-block-group__inner-container {
    background-color: #ffffff;
    width: 100%;
    border-radius: 0.5rem;
}

.editor-styles-wrapper .has-background-color .small-list .wp-block-group__inner-container {
    background-color: #ffffff !important;
    width: 100% !important;
    border-radius: 0.5rem !important;
}

.side-block {
    background-color: #0080FF; /* Fallback */
    background: linear-gradient(to bottom right, #0080FF, #0066CC);
    margin-top: 2rem;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    position: relative;
}

.editor-styles-wrapper .side-block {
    background-color: #0080FF !important; /* Fallback */
    background: linear-gradient(to bottom right, #0080FF, #0066CC) !important;
    margin-top: 2rem !important;
    color: #ffffff !important;
    padding: 1.5rem !important;
    border-radius: 0.5rem !important;
    position: relative !important;
}

.side-block::after {
    content: "";
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 2rem;       /* Icon-Breite anpassen */
    height: 2rem;      /* Icon-Höhe anpassen */
    background-image: url("img/lightbulb.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

.editor-styles-wrapper .side-block::after {
    content: "" !important;
    position: absolute !important;
    right: 1.5rem !important;
    top: 1.5rem !important;
    width: 2rem !important;       /* Icon-Breite anpassen */
    height: 2rem !important;      /* Icon-Höhe anpassen */
    background-image: url("img/lightbulb.png") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    z-index: 1 !important;
}

.side-block > * {
    z-index: 2;
    position: relative;
}

.editor-styles-wrapper .side-block > * {
    z-index: 2 !important;
    position: relative !important;
}

.contact-phone {
    position: relative;
    padding-left: 1.5rem;
}

.editor-styles-wrapper .contact-phone {
    position: relative !important;
    padding-left: 1.5rem !important;
}

.contact-mail {
    position: relative;
    padding-left: 1.5rem;
}

.editor-styles-wrapper .contact-mail {
    position: relative !important;
    padding-left: 1.5rem !important;
}

.contact-place {
    position: relative;
    padding-left: 1.5rem;
}

.editor-styles-wrapper .contact-place {
    position: relative !important;
    padding-left: 1.5rem !important;
}

.contact-phone::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1rem;
    width: 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('img/telephone.png');
}

.editor-styles-wrapper .contact-phone::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    height: 1rem !important;
    width: 1rem !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-image: url('img/telephone.png') !important;
}

.contact-mail::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1rem;
    width: 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('img/email.png');
}

.editor-styles-wrapper .contact-mail::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    height: 1rem !important;
    width: 1rem !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-image: url('img/email.png') !important;
}

.contact-place::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1rem;
    width: 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('img/location.png');
}

.editor-styles-wrapper .contact-place::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    height: 1rem !important;
    width: 1rem !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-image: url('img/location.png') !important;
}

.wpcf7 input {
    margin: 0.5rem 0;
    width: 100%;
    height: 2.5rem;
    border: 1px solid #707070;
    border-radius: 2px;
    padding: 0 1rem;
}

.wpcf7 textarea {
    margin: 0.5rem 0;
    width: 100%;
    height: 10rem;
    border: 1px solid #707070;
    border-radius: 2px;
    padding: 1rem 1rem;
}

.wpcf7 select {
    margin: 0.5rem 0;
    width: 100%;
    height: 2.5rem;
    border: 1px solid #707070;
    border-radius: 2px;
    padding: 0 1rem;
    -webkit-appearance: menulist; /* Safari, iOS */
    appearance: menulist; 
}

.wpcf7 input[type="checkbox"] {
    height: inherit;
    width: inherit;
}

.wpcf7-radio {
    display: flex;
    gap: 10px; /* Abstand zwischen Buttons */
    width: 100%; /* volle Breite */
}

.wpcf7-radio input[type="radio"] {
    display: none;
}

.wpcf7-radio .wpcf7-list-item-label {
    flex: 1 1 0; /* flexibel, gleich groß */
    min-width: 120px; /* sorgt dafür, dass Buttons nicht zu klein werden */
    text-align: center;
    padding: 12px 0; /* etwas mehr Padding für größere Buttons */
    border: 2px solid #0066CC;
    border-radius: 5px;
    background-color: #fff;
    color: #0066CC;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    box-sizing: border-box; /* Padding wird in Breite einbezogen */
    width: 100%;
    display: block;
}

.wpcf7-radio .wpcf7-list-item-label.active-item {
    background-color: #0066CC;
    color: #fff;
}

.wpcf7-radio .wpcf7-list-item-label:hover {
    background-color: #0066CC;
    color: #fff;
}

.wpcf7-list-item {
    margin: 0;
    width: 100%;
}

.wpcf7 input[type="submit"] {
    background-color: #0066CC;
    color: #FFFFFF;
    font-size: 0.8rem;
}

.wpcf7 input:disabled {
    opacity: 0.5;
}

.wpcf7 input[type="date"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #000000;
}

.wp-gr {
    width: 80% !important;
    margin: auto !important;
    position: relative!important;
    margin-top: -4rem !important;
    background-color: #ffffff !important;
    padding: 2.5rem !important;
    border-radius: 0.3rem !important;
    box-shadow: 0px 0px 5px silver !important;
}

.editor-styles-wrapper .wp-gr {
    width: 80% !important;
    margin: auto !important;
    position: relative!important;
    margin-top: -4rem !important;
    background-color: #ffffff !important;
    padding: 2.5rem !important;
    border-radius: 0.3rem !important;
    box-shadow: 0px 0px 5px silver !important;
}

.span-mark {
    border-radius: 0.3rem;
    padding: 0 0.5rem;
}

.editor-styles-wrapper .span-mark {
    border-radius: 0.3rem !important;
    padding: 0 0.5rem !important;
}

.has-background-color {
    padding: 4rem 0 2rem 0;
}

.editor-styles-wrapper .has-background-color {
    padding: 4rem 0 2rem 0 !important;
}

.gg-popup {
	max-width: 60rem; 
	max-height: 40rem; 
	display: flex; 
	justify-content: center; 
	align-items: center; 
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://darmstaedter-packer.de/wp-content/uploads/2026/01/iStock-2162659914.jpg'); 
	background-position: center center; 
	background-repeat: no-repeat; 
	background-size: cover; 
	width: 60vw; 
	height: 60vh;
}

.gg-popup-font {
	display: block; 
	text-align: center; 
	font-size: 3rem; 
	color:#FFFFFF; 
	font-weight: 600;
	padding: 0.5rem;
}

.gg-popup-button {
	background-color: #0066CC;
	border-radius: 0.3rem;
	margin-bottom: 3.1rem;
	padding: 0.7rem 2rem;
	display: inline-block;
	font-size: 1.2rem;
	font-weight: 400;
	cursor: pointer;
	opacity: 1;
	transition: 0.5s;
}

.gg-popup-button:hover {
	opacity: 0.8;
}

@media (max-width: 80rem) {
    main .wp-block-cover h1 {
        padding: 0 !important;
        text-align: center !important;
        font-size: 3.5rem !important;
    }

    main .wp-block-cover h2 {
        padding: 0 !important;
        text-align: center !important;
        font-size: 2rem !important;
    }

    main {
        width: 100%;
    }

    .hero-overlay-text {
        display: none;
    }
	
	.editor-styles-wrapper .wp-block-cover h1 {
        padding: 0 !important;
        text-align: center !important;
        font-size: 3.5rem !important;
    }

    .editor-styles-wrapper .wp-block-cover h2 {
        padding: 0 !important;
        text-align: center !important;
        font-size: 2rem !important;
    }

    .editor-styles-wrapper {
        width: 100% !important;
    }

    .editor-styles-wrapper .hero-overlay-text {
        display: none !important;
    }
}

@media (max-width: 781px) {
    .new-order-1 {
        order: 1;
    }

    .new-order-2 {
        order: 2;
    }

    main section:first-of-type .wp-block-group div:has(.wp-block-list) {
        justify-content: center;
    }

    main section .wp-block-buttons {
        justify-content: center !important;
    }

    main section .has-text-align-right {
        text-align: left;
    }
	
	main section:last-of-type .wp-block-cover {
		min-height: 45rem;
	}
	
	.editor-styles-wrapper .new-order-1 {
        order: 1 !important;
    }

    .editor-styles-wrapper .new-order-2 {
        order: 2 !important;
    }

    .editor-styles-wrapper section:first-of-type .wp-block-group div:has(.wp-block-list) {
        justify-content: center !important;
    }

    .editor-styles-wrapper section .wp-block-buttons {
        justify-content: center !important;
    }

    .editor-styles-wrapper section .has-text-align-right {
        text-align: left !important;
    }
	
	.editor-styles-wrapper section:last-of-type .wp-block-cover {
		min-height: 45rem !important;
	}
	
	.gg-popup-font {
		font-size: 1.5rem;
	}
	
	.gg-popup-button {
		font-size: 1rem;
		margin-top: 1rem;
	}
	
	.sub-menu {
		display: none !important;
	}
	
	.menu-item:has(a[href="#"]) {
		display: none !important;
	}
}