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

:root{
    --orange: #e36a20;
    --grau: #666666;
}

/*-------SCHRIFTEN-------*/
    html {
        overflow-x: hidden;
    }

    html.noScroll{
        overflow: hidden;
    }

    body{
        font-family: 'Rajdhani', sans-serif;
        font-weight: 400;
        font-size: 1.2rem;
        overflow-x: hidden;
        line-height: 1.6;
    }

    h1{
        font-weight: 700;
        font-size: 3rem;
        line-height: 1.2;
    }

    h2{
        font-size: 3rem;
        font-weight: 400;
    }

    h3{
        margin-top: 30px;
        font-size: 1.8rem;
        margin-bottom: 5px;
        font-weight: 400;
        color: var(--grau);
    }
    
    .farbigesWort{
        color: var(--orange);
        font-weight: 700;
    }

    .dunkel{
        color: #000;
    }

    .eingerückt{
        margin-left: 150px;
    }

    .textCenter{
        text-align: center;
    }
/*-------HEADER-------*/

    header{
        width: 100%;
        /*height: 100vh;*/
    }

    #navOpener {  
        width: 26px;
        height: 18px;
        position: relative;
        left: 50%;
        top: 50%;
        cursor: pointer;
        transform: translate(-50%, -50%);
    }

    .line {
        width: 100%;
        height: 2px;
        background-color: #fff;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        transition: all 0.5s;
    }

    #navOpener .line:nth-child(1) {
        top: 0px;
    }

    #navOpener .line:nth-child(2) {
        top: 50%;
        transform: translate(-50%, -50%);
    }

    #navOpener .line:nth-child(3) {
        bottom: 0px;
    }

    #navOpener.active .line:nth-child(1) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    #navOpener.active .line:nth-child(2) {
        width: 0px;
    }

    #navOpener.active .line:nth-child(3) {
        bottom: auto;
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .circle{
        width: 100px;
        height: 100px;
        border-radius: 0px 60px 60px 60px;
        background-color: var(--orange);
        position: fixed;
        z-index: 10000;
        transition: all 1s;
        cursor: pointer;
    }

    .circle:hover, .circle.active{
        transform: translate(15px, 15px) scale(1.3);
    }

    .header_wrap{
        display: none;
        position: fixed;
        font-size: 2rem;
        width: 100%;
        height: 100vh;
        background-color: var(--orange);
        z-index: 1000;
    }

    .header_wrap ul{
        list-style: none;
        position: absolute;
        top: 200px;
        left: 100px;
    }

    .header_wrap ul li{
        margin-top: 20px;
    }

    .header_wrap ul li:first-child{
        margin-top: 0px;
    }

    .header_wrap ul li a{
        text-decoration: none;
        text-transform: none;
        text-transform: uppercase;
        color: #fff;
    }

/*-------TITELBILD-------*/

#title {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
    z-index: -10000;
    background-size: cover;
    background-position: center;
    animation-name: zooom;
    animation-duration: 25s;
    animation-fill-mode: forwards;
}

@keyframes zooom{
    from
    {
        transform: scale(1);
    }

    to
    {
        transform: scale(1.3);
    }
}

#titleUnterseite{
    position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
    z-index: -10000;
    background-size: cover;
    background-position: center;
}


/*-------BUTTON-------*/
.button, button{
    background-color: var(--orange);
    color: #fff;
    display: inline-block;
    text-decoration: none;
    border-radius: 5rem;
    padding: 15px 25px 10px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 50px;
    font-size: 1rem;
    border: none;
}

.button:hover, button:hover{
    background-color: #bf5819;
}

.buttonCenter{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/*-------TITEL_HEADER-------*/

.titleWrap{
	position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.titleWrapUnterseite{
	position: relative;
    width: 100%;
    height: 30vh;
    overflow: hidden;
}

.filter {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    width: 500px;
    height: 100vh;
}

.logo{
	width: 200px;
	position: relative;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
}

.logoUnterseite{
    width: 200px;
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
}

.titletextWrapper{
    margin: 100px 50px 30px;
    position: relative;
    top: 0;
    left: 0;
    text-align: center;
}

.einleitungsText{
    margin-top: 30px;
}

/*-------SPRUNGMARKE-------*/

.jumper{
    padding-top: 200px;
    margin-top: -200px;
}

/*-------CONTENT STARTSEITE-------*/

.link{
    color: var(--orange);
}

.orangeStripe{
    width: 100%;
    height: 10px;
    background-color: var(--orange);
}

.contentWrap{
    padding: 70px 200px 0px;
}

.trennBild{
    width: 100%;
    height: 450px;
    margin-top: 70px;
}

#colorSection{
    width: 100%;
    background-color: var(--orange);
    padding: 40px 100px 60px;
    margin-top: 70px;
    color: #fff;
}

.whiteCircle{
    border-radius: 100%;
    background-color: #fff;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
}

.iconBeratung{
    background-image: url(../img/beratung.svg);  
}

.iconSchild{
    background-image: url(../img/schild.svg);
}

.iconHand{
    background-image: url(../img/hand.svg);
}

.iconMehr{
    background-image: url(../img/mehr.svg);
}

.iconsFlexbox{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: -40px;
    margin-bottom: -40px;
    margin-top: 40px;
}

.flexboxContainer{
    width: calc(50% - 40px);
    position: relative;
    padding-left: 120px;
    margin-left: 40px;
    margin-bottom: 40px;
}
/*-------LEISTUNGSBOXEN-------*/

.flexGrid
{
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 20px);
	margin-left: -20px;
    margin-bottom: -20px;
    margin-top: 50px;
}

.flexGridItem
{
	width: calc(33% - 20px);
	color: #646363;
	text-decoration: none;
	margin-left: 20px;
	margin-bottom: 20px;
	background-color: #fff;
	transition: all 0.2s;
	background-size: 180px;
	border-bottom: 0!important;
	color: #646363!important;
}

.flexGridItem:hover
{
	transform: scale(1.02);
	box-shadow: 0px 0px 6px rgba(0,0,0,0.2);
}

.gridImage
{
	width: 100%;
	padding-bottom: 70%;
	background-size: cover;
	background-position: center;
}

.gridImage_left
{
	width: 100%;
	padding-bottom: 70%;
	background-size: cover;
	background-position: left;
}

.gridText
{
	padding: 10px 15px;
}

/*-------SLIDER-------*/

.slider img
{
	height: 300px;
	padding: 0px 10px;
}

.slick-dots
{
	position: relative!important;
	padding: 0px 30px;
	line-height: 0.8em!important;
	margin-top: 1.3em;
	display: block;
	bottom: 0px;
}

.text ul.slick-dots
{
	margin-left: 0em!important;
	margin-right: 0em!important; 
}

.slick-dots li button::before 
{
    font-size: 8px;
}

.slick-dots li 
{
    margin: 0px 6px;
    transition: all 0.2s;
}

.slick-dots li.slick-active, .slick-dots li:hover
{
	transform: scale(1.35);
}

.slick-dotted.slick-slider
{
	margin-bottom: -12px;
}

.slick-slide
{
    height: auto!important;
    margin-top: 40px;
}

.sliderLeistungen{
    margin-top: 40px;
    text-align: center;
}

.leistungsSlide{
    text-decoration: none;
    color: #000;
}

.leistungsSlide__Img{
    margin-bottom: 10px;
}

/*-------KONTAKTUNTERSEITE-------*/
input[type=text], [type=email] , select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #000;
    border-radius: 4px;
    background-color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
}

select{
    background-image: url(../img/arrow.svg);
    background-position: center right 20px;
    background-size: 20px;
    background-repeat: no-repeat;
    cursor: pointer;
}

textarea{
    width: 100%;
    height: 200px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 12px 20px;
    border: 1px solid #000;
    border-radius: 4px;
    resize: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
}

.times{
    width: 80px;
    display: inline-block;
}

.contactFlexbox{
    display: flex;
    margin-left: -20px;
    margin-top: 80px;
    justify-content: center;
}

.flexContainer_contact {
    width: calc(70%);
}

.flexContainer_contact1 {
    margin-right: 100px;
    width: calc(30%);
}

.flexItem_adress{
    margin-bottom: 30px;
}

#honeypot
{
    position: fixed;
    top: 200%;
    right: 200%;
}

input[type=checkbox]{
    margin-top: 30px;
}

/*-------LEISTUNGEN-------*/
.leistungsPunkte{
    padding-left: 20px;
}

/*-------BILDERGALERIE-------*/

.imgFlex {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0px 0px;
    
}

.imgFlexItem {
    width: 100%;
}

.flex-images {
    overflow: hidden;
    margin-left: -10px;
    margin-right: -10px;
    margin-top: -10px;
    margin-bottom: -10px;
}

.flex-images .item {
    float: left;
    margin: 10px;
    box-sizing: content-box;
    overflow: hidden;
    position: relative;
}

.imgFlex img {
    width: 100%;
    position: relative;
    z-index: 10;
    float: left;
}

.flex-images .item img {
    display: block;
    width: auto;
    height: 100%;
}

/*-------REFERENZEN-------*/

.beispielbild{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.beispielbox{
    width: calc(280px - 15px);
    margin-top: 15px;
    margin-left: 15px;
    position: relative;
    height: 200px;
    background-color: rgba(227, 106, 32, 0.5);
}

.flexboxbeispiel{
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-top: 50px;
    max-width: 1120px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/*-------FOOTER-------*/

#footer
{
	padding: 40px 0px 35px;
	background-color: #000;
	height: 180px;
    color: #646363;
    text-align: center;
    margin-top: 70px;
}

#footerRed
{
	padding: 20px 0px;
    background-color: var(--orange);
	color: #fff;
    font-size: 0.9em;
    text-align: center;
}

#footerList li
{
	display: inline-block;
	margin: 0px 5px;
}

#footerList li:after
{
	content: "|";
	margin-left: 10px;
}

#footerList li:last-child:after
{
	display: none;
}

#footerList li a
{
	color: #fff;
	text-decoration: none;
}

#footerList li a:hover
{
	border-bottom: 1px solid #fff;
}

#footerLogo
{
	width: 100%;
	max-width: 200px;
}

#copyNote{
    margin-top: 15px;
}

/*-------IMPRESSUM-------*/

.flexBox {
    display: flex;
    margin-bottom: 50px;
    justify-content: center;
    width: 100%;
}

.flexItem_small{
    width: 25%;
    text-align: right;
}

.flexItem_big{
    width: 75%;
    margin-left: 60px;
}

/* -------------------------------------------- Cookie -----------------------------------------------*/
#cookieNotice{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--orange);
	color: #fff;
	z-index: 100;
	padding: 20px 0px;
	font-size: 0.8em;
}

#cookieSpace{
	position: absolute;
	z-index: -10;
}

.text p a, .text ul a, #cookieNotice a, form a{
	color: var(--grau);
	text-decoration: none;
	border-bottom: 1px dashed var(--grau);
	transition: all 0.3s;
}

.text p a:hover, .text ul a:hover, #cookieNotice a:hover, form a:hover{
	border-bottom: 1px solid var(--grau);
}

#accepted{
	display: inline-block;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	margin-bottom: -0.1em;
	float: right;
}

#accepted:hover{
	opacity: 0.7;
}

#cookieCheckboxes{
	display: flex;
	flex-wrap: wrap;
	margin-top: 1em;
	margin-bottom: 1em;
}

#cookieCheckboxes label{
	position: relative;
	margin-right: 1.5em;
	padding-left: 1.2em;
	cursor: pointer;
}

#cookieCheckboxes input{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

#cookieNotice strong, #accepted{
	font-size: 1.1em;
}

/*-------RESPONSIVE-------*/
@media all and (max-width: 601px){
    body{
        font-size: 1rem;
    }

    h1{
        font-size: 2rem;
    }

    h2{
        font-size: 2rem;
    }

    h3{
        font-size: 1.3rem;
    }

    .eingerückt {
        margin-left: 0px;
        text-align: center;
    }

    .button{
        margin-top: 30px;
        font-size: 0.9rem;   
    }

    .circle{
        width: 70px;
        height: 70px;
    }

    .filter {
        width: 100%;
    }

    .contentWrap{
        padding: 50px 100px 0px;
    }

    .flexGridItem{
        width: calc(100% - 20px);
        box-shadow: 0px 0px 6px rgba(0,0,0,0.2);
    }

    .trennBild{
        height: 250px;
    }

    #colorSection{
        padding: 40px 70px 60px;
    }

    .whiteCircle{
        width: 60px;
        height: 60px;
        position: relative;
        top: 0;
        left: 0;
        background-size: 45%;
        transform: translate(0);
        margin-bottom: 15px;
    }

    .iconsFlexbox{
        display: block;
        margin-left: 0px;
        margin-bottom: 0px;
    }

    .flexboxContainer{
        width: 100%;
        padding-left: 30px;
        margin-bottom: 40px;
        margin-left: 0px;
    }

    .slider img{
        height: 100px;
        padding: 0px 10px;
    }

}

@media all and (max-width: 500px){

    h2{
        font-size: 1.6rem;
    }

    .contentWrap{
        padding: 50px 50px 0px;
    }

    #colorSection{
        padding: 40px 50px 60px; 
    }

    .contactFlexbox{
        display: block;
        margin-left: 0px;
    }
    
    .flexContainer_contact {
        width: 100%;
    }
    
    .flexContainer_contact1 {
        margin-right: 100px;
        width: 100%;
    }
    
    .flexItem_adress{
        margin-bottom: 30px;
    }
}

@media screen and (max-device-width: 480px){
  body {
    -webkit-text-size-adjust: none;
  }
}

.btn, .btn-primary, button{
    background-color: var(--orange);
    color: #fff;
    display: inline-block;
    text-decoration: none;
    border-radius: 5rem;
    padding: 15px 25px 10px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 50px;
    font-size: 1rem;
    border: none;
}

.btn, .btn-primary, button:hover{
    background-color: #bf5819;
}