#cookies {
	border-radius: 20px;
	max-width: 1200px;
	width: 90%;
	background-color: gray;
	color: white;
	position: fixed;
	bottom: 10px;
	box-shadow: 0 0 5px gray;
	left: 50%;
	transform: translate(-50%, 0);
	padding: 30px;
	display: block;
	z-index: 999999;
}

#cookies button {
	border-radius: 15px;
	padding: 5px 10px;
	color: black;
	text-transform: uppercase;
	letter-spacing: 2px;
}
#highlight {
    width: 100%;
    height: 100vh;
    background-image: url("../images/hauptbild1.webp");
    background-size: cover;
    background-position: center;
}
#pfeil {
	position: absolute;
	left:40%;
	top: 100%;
	color: var(--primary);
	font-size: 1.3em;
}
#pfeil img {
	width: 20%;
}
.punkte-sammlung {
    display: flex;
    gap: 10px;
    margin: 20px 0 50px 0;
}
.punkte-sammlung div:nth-child(1) {
    background-color: var(--primary);
    width: 70px;
}
.punkte-sammlung div:nth-child(2) {
    background-color: #FE6F20;
}
.punkte-sammlung div:nth-child(3) {
    background-color: #BE1823;
}
.punkte-sammlung div:nth-child(4) {
    background-color: #717bbc;
}
.punkte {
    background-color: blue;
    width:12px;
    height:12px;
    border-radius: 6px;
}
.my-10 {
    margin: 100px 0;
}
.my-20 {
    margin: 200px 0;
}
.mt-20 {
    margin-top: 200px;
}
.py-7 {
    padding: 70px 0;
}
.py-10 {
    padding: 100px 0;
}
.py-20 {
    padding: 200px 0;
}
.icon {
    /* margin-right: 10px; */
    color: var(--primary);
    width: 30px;
}
.white {
    color: #fff !important;
}
.img-referenz {
    width: 22%;
}
.img-referenzen {
    display: flex;
    gap: 40px;
}
.w-10 {
    width: 10%;
}
.w-20 {
    width: 20%;
}
.w-30 {
    width: 30%;
}
.w-40 {
    width: 40%;
}
.btn-anrufen {
	width: 70px;
	height: 70px;
	background-color: #198754;
	border-top-left-radius: 50%;
	border-top-right-radius: 50%;
	border-bottom-left-radius: 50%;
	border-bottom-right-radius: 3px;
	position: fixed;
	right: 20px;
	bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
}
/* ############################# */
/* ##### REFERENZEN SLIDER ##### */
.slider {
	height: 250px;
	margin: auto;
	position: relative;
	width: 100%;
	display: grid;
	place-items: center;
	overflow: hidden;
}
.slide-track {
	display: flex;
	width: calc(250px * 34);
	animation: scroll 40s linear infinite;
}
.slide-track:hover {
	animation-play-state: paused;
}
@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-250px * 17));
	}
}
.slide {
	height: 200px;
	width: 250px;
	display: flex;
	align-items: center;
	padding: 15px;
	perspective: 100px;
}
.slide img {
	width: 100%;
	transition: transform 1s;
}
.slide img:hover {
	transform: translateZ(20px);
}
.slider::before,
.slider::after {
	background: linear-gradient(to right, rgba(203,51,62,1) 0%, rgba(203,51,62,0) 100%);
	content: '';
	height: 100%;
	position: absolute;
	width: 15%;
	z-index: 2;
}
.slider::before {
	left: 0;
	top: 0;
}
.slider::after {
	right: 0;
	top: 0;
	transform: rotateZ(180deg);
}
/* ##### REFERENZEN SLIDER ##### */
/* ############################# */
@media (max-width: 992px) {
	#pfeil {
		left:60%;
	}
}
@media (max-width: 768px) {
	#pfeil {
		left:40%;
	}
}