
/*vorteile teil start*/
.vorteile {
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    margin-bottom: 200px;
}

.vorteile .flex {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
    margin-top: 50px;
}

.vorteile .flex .line {
	width: 50px;
	height: 3px;
	background: var(--gold);
	border-radius: 100px;
	margin: 10px;
}

.vorteile h3 {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 200%;
}

.vorteile .box {
    justify-content: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

.vorteile .box .content {
    width: 100%;
    max-width: 400px;
    min-width: 300px;
    min-height: 150px;
    display: flex;
    align-items: center;
    margin: 10px;
    background-color: var(--bg2);
    padding: 10px;
}

.vorteile .box .content i {
    font-size: 40px;
    margin-right: 15px;
    color: var(--gold);
}

.vorteile .box .content .text h4 {
	font-size: 100%;
	text-transform: uppercase;
    font-weight: bold;
}

.vorteile .box .content .text p {
    font-size: 100%;
}


/*Start Homestaging*/

.vorteile .staging {
    display: flex;
    flex-direction: column ;
    width: 100%;
    margin-top: 200px;
    margin-bottom: 200px;
}

.vorteile .staging h3 {
    text-align: center;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 200%;
}

.vorteile .staging .box {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.img-comp-container {
    left: -100%;
    box-sizing: border-box;
    position: relative;
    height: 500px; /*should be the same height as the images*/
}
  
.img-comp-img {
    position: absolute;
    width: auto;
    height: auto;
    overflow:hidden;
}
  
.img-comp-img img {
    width: 800px;
    height: 500px;
}
  
.img-comp-slider {
    position: absolute;
    z-index:9;
    cursor: ew-resize;
    /*set the appearance of the slider:*/
    width: 40px;
    height: 40px;
    background-color: #2196F3;
    opacity: 0.7;
    border-radius: 50%;
}

.vorteile .staging .bot {
    margin-top: 20px;
    width: 100%;
    max-width: 900px;
    min-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
}

.vorteile .staging .bot p {
    max-width: calc(90% - 20px);
	width: 200px;
	background: var(--cta2);
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	border-radius: 5px;
	color: white;
	font-weight: bold;
	font-size: 120%;
}

@media only screen and (max-width: 850px) {
    .img-comp-img img {
        width: 600px;
        height: 350px;
    }
    .img-comp-container {
        left: -75%;
        box-sizing: border-box;
        position: relative;
        height: 350px; /*should be the same height as the images*/
    }
}

@media only screen and (max-width: 630px) {
    .img-comp-img img {
        width: 500px;
        height: 300px;
    }
    .img-comp-container {
        left: -62%;
        box-sizing: border-box;
        position: relative;
        height: 300px; /*should be the same height as the images*/
    }
}

@media only screen and (max-width: 550px) {
    .img-comp-img img {
        width: 350px;
        height: 200px;
    }
    .img-comp-container {
        left: -44%;
        box-sizing: border-box;
        position: relative;
        height: 200px; /*should be the same height as the images*/
    }
    .vorteile .staging .bot p {
        width: 100px;
    }
}

@media only screen and (max-width: 390px) {
    .img-comp-container {
        left: -45%;
        box-sizing: border-box;
        position: relative;
        height: 200px; /*should be the same height as the images*/
    }
}

@media only screen and (max-width: 380px) {
    .img-comp-container {
        left: -46%;
        box-sizing: border-box;
        position: relative;
        height: 200px; /*should be the same height as the images*/
    }
}

@media only screen and (max-width: 375px) {
    .img-comp-container {
        left: -46.5%;
        box-sizing: border-box;
        position: relative;
        height: 200px; /*should be the same height as the images*/
    }
}

@media only screen and (max-width: 370px) {
    .img-comp-container {
        left: -47%;
        box-sizing: border-box;
        position: relative;
        height: 200px; /*should be the same height as the images*/
    }
}
/*Ende Homestaging*/