/*
Theme Name:	hello-elementor Child
Description:	hello-elementor Child Theme
Author:		suchperfekt.de
Author URI:	https://suchperfekt.de/
Template:	hello-elementor
Version:	1.0
*/


/*Hier steht Ihr gewünschter Code.*/

/* CHANGES THE BACKGROUND MENU ON SCROLL */
.elementor-sticky--effects {
 background: #00000080!important; /* edit here to change the background color for your sticky header*/
}

/* HIDES THE DARK LOGO */

.second-logo {
 display: none;
}

/* SWITCHES LOGO ON SCROLL */
.elementor-sticky--effects .second-logo {
 display: inline-block;
}
.elementor-sticky--effects .first-logo {
 display: none;
}

/* CHANGES THE TEXT COLOR ON SCROLL */
.elementor-sticky--effects .sticky-menu-items ul li a {
 color: #fff!important; /* edit here to change your text color for sticky header */
}

.elementor-sticky--effects .sticky-menu-items a:hover {
 color: #99C306!important; /* edit here to change your text color for sticky header */
}



.second-logo img {
	transition: .5s all ease-in-out;
}

/*Kontaktformular*/

.form_half {
width: 49.5%;
float: left;
margin-right: 1%;
}
.form_half_last {
	margin-right:0;
}

/*Button*/

button,
[type=submit],
[type=button] {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  user-select: none;
  border: 1px solid #000;
  font-size: 1rem;
  border-radius: 3px;
  transition: all 0.3s;
}
button:focus,
[type=submit]:focus,
[type=button]:focus {
  outline: 5px auto -webkit-focus-ring-color;
}
button:hover, button:focus,
[type=submit]:hover,
[type=submit]:focus,
[type=button]:hover,
[type=button]:focus {
  color: #ffffff;
  background-color: #CC3366;
  text-decoration: none;
}
button:not(:disabled),
[type=submit]:not(:disabled),
[type=button]:not(:disabled) {
  cursor: pointer;
}