/*
Theme Name: Lavin
Template: expert-business-advisor
Author: Andreas Keller
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Text Domain: expert-business-advisor
*/
body.custom-background {
	opacity: 0.93;
	background-position: top right !important;
}

.navbar-menubar {
	display: flex;
	justify-content: flex-end;
}

@media (max-width: 1000px) {
.main-navigation .menu.menu li i{
    right: -150px !important;
	}
}

.dropdown-menu.dropdown-menu {
    display: block !important;
}

header {
	border-bottom: 1px solid lightgray;
}


.main-header .sticky-header .middle-header-area{
	background-color: white;
	min-height: 60px;
}


#slider-section::before {
	background-image: none;
}


section.frontpage_header_image {
	position: relative;
}

section.frontpage_header_image img{
	min-height: 90vh;
	min-width: 100%;
}

.breadcrumb-section:before, .breadcrumb-section {
	position: relative;
}


.headline{
	position: absolute !important;
	top: 40%;
	color: white;
	left: 10%;
}

@media (max-width: 767px) {
	
	section.frontpage_header_image img{
	    min-height: 70vh;
	    object-fit: cover;
    }

	.logo-col {
		text-align: left !important;
	}
	
	.menu-col {
		top: 0;
		position: absolute;
	}
	
	.main-header .navbar-menubar.responsive-menu {
	    text-align: right;
    }
	
	.logo {
		z-index: 1000;
		position: absolute;
	}
	
	.navbar-toggler-close {
		float: right;
		transition: unset;
	}
	
	.navbar-collapse.navbar-menu.collapse.show,
	.navbar-menubar.responsive-menu.active {
		transition-duration: 0.3s;
		transition-timing-function: ease-in;
	}
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
	    flex-direction: row-reverse !important;
    }
}

nav ul li .lavin-nav {
	padding: 10px;
}

form.lavin {
	font-size: 20px;
	margin: auto;
}

form.lavin > div {
	display: flex;
	justify-content: space-between;
	margin: 10px; 
	border: 1px solid yellowgreen;
	padding: 10px;
	border-radius: 3px;
}

form.lavin input.name, 
form.lavin input.number{
	max-width: 95% !important;
	margin-left: 8px;
}

form.lavin input.number,
form.lavin input.name {
	font-size: 23px;
	border-radius: 6px;
	border-color: yellowgreen ;
	/*width: auto;*/
}

form.lavin > div > span {
	width: 200px;
}

form.lavin > div div span:nth-of-type(even) {
	width: 120px;
	padding-left: 20px;
}

form.lavin button {
	font-size: 23px;
	margin-top: 20px;
}

.firstdiv {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.days{
	padding: 0;
}

.andreas{
	color: cadetblue;
}

.flurina{
	color: violet;
}

.christine{
    color: springgreen ;
}

@media screen and (max-width: 1042px){
	
	form.lavin {
	    font-size: 16px;
	}
    
    form.lavin > div {
    	flex-direction: column;
    	margin-top: 30px;
    }

    form.lavin div div {
        margin: 8px 0;	
    }

     
    form.lavin div div input{
    	margin-left: 8px;
    }


    form.lavin div span:nth-of-type(even) {
	    padding-left: 0;
    }

	form.lavin > div input{
	    font-size:20px;
    }

    form.lavin > div > span{
    	display: inline-block;
    }
    
    .wp-block-navigation__responsive-container {
        background-color: #E5E7F2 !important;
    }

    .people{
	    text-align: right;
    }

	.week{
	    font-size: 22px;
    }
} 

@media screen and (max-width: 767px){
    form label .wpcf7-text,form label .wpcf7-textarea {
	    width: 290px !important;
    }
}
	
.wpcf7-submit {
	background-color: red;
	font-size: 22px !important;
}

.wpcf7-form label {
	margin-bottom: 20px;
}

button[type='submit'], input[type='submit']  {
	background-color: red;
}

.wpcf7-form input,
.wpcf7-form textarea{
	border-radius: 2px !important;
}

footer {
	background-position: calc(100% - 42px) center !important;
	background-size: 180px !important;
}

.logo0 {
    width: 100px;
    animation: myAnimation 5s linear 0.5s infinite alternate;
	animation-play-state: paused;
    position: absolute;
}

.logo0:hover {
	animation-play-state: running;
}

.logo2 {
    width: 100px;
    animation: myAnimation2 5s linear 0.5s infinite alternate;
	animation-play-state: paused;
    position: absolute;
}

.logo3 {
    width: 100px;
    animation: myAnimation3 5s linear 0.5s infinite alternate;
    position: absolute;
}

.logo4 {
    width: 100px;
    position: absolute;
    animation: myAnimation4 5s ease-in-out 0.5s infinite alternate;
	animation-play-state: paused;
}

@keyframes myAnimation {
  from { left: 0}
  to { left: calc(100% - 50px)}
}

@keyframes myAnimation2 {
  from { left: 0; transform: rotate3d(0, 0, 0, 0);}
  to { left: calc(100% - 50px); transform: rotate3d(0, 0, 1, 360deg);}
}

@keyframes myAnimation3 {
  0%  { left: 0; transform: rotate3d(0, 0, 0, 0) scale3d(1.0, 1.0, 1.0);}
  50% { transform: rotate3d(0,0,1,180deg) scale3d(1.5, 1.5, 1.5); }
  100% { left: calc(100% - 50px); transform: rotate3d(0, 0, 1, 360deg) scale3d(1.0, 1.0, 1.0);}
}

@keyframes myAnimation4 {
  0%   { left: 0;}
  33%  { left: 33% ;}
  66%  { left: 66%;}
  100% { left: calc(100% - 50px);}
}

.running {
	animation-play-state: running;
}
