.hero {
	position: relative;
	height: 100vh;
	/*width: 100vw;*/
	/*overflow: hidden;*/
	z-index: 900;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	animation: heroSlideshow 45s infinite ease-in-out;
	opacity: 0;
}
@keyframes heroSlideshow {

    /* ---------- IMAGE 1 ---------- */
    0% {
        background-image: url(/src/images/tinified/img-rotterdam-1.jpg);
        opacity: 0;
    }
    2%  { opacity: 1; }   /* fast fade-in */
    12% { opacity: 1; }   /* stay fully visible */
    17% { opacity: 0; }   /* slow fade-out */

    /* ---------- IMAGE 2 ---------- */
    17.01% {
        background-image: url(/src/images/tinified/img-rotterdam-2.png);
        opacity: 0;
    }
    19%  { opacity: 1; }
    29%  { opacity: 1; }
    34%  { opacity: 0; }

    /* ---------- IMAGE 3 ---------- */
    34.01% {
        background-image: url(/src/images/tinified/img-rotterdam-3.jpg);
        opacity: 0;
    }
    36%  { opacity: 1; }
    46%  { opacity: 1; }
    51%  { opacity: 0; }

    /* ---------- IMAGE 4 ---------- */
    51.01% {
        background-image: url(/src/images/tinified/img-rotterdam-2.png);
        opacity: 0;
    }
    53%  { opacity: 1; }
    63%  { opacity: 1; }
    68%  { opacity: 0; }

    /* Reset to start */
    100% {
        opacity: 0;
    }
}


.hero .whatsapp {
	position: absolute;
	left: 50%;
	/*top: 25%;*/
	bottom: -80px;
	transition: all 0.2s ease;
	transform: translate(-50%);
	filter: drop-shadow(0 3px 2px rgba(0,0,0,0.5));
}
.hero .whatsapp:hover {
	transform: scale(1.2) translate(-50%);
	
	filter: drop-shadow(0 3px 2px rgba(0,0,0,0.75));
}
.hero p {
	text-align: center;
	/*margin: auto;*/
	/*max-width: 75vw;*/
	width: 85vw;
	color: #fff;
	font-weight: bold;
	position: absolute;
	/*bottom: 50px;*/
	top: 150px;
	left: 50%;
	transform: translateX(-50%);
	
	/*background-color: #039cdf;*/
	background-color: #bd352b;
	padding: 5px;
}
.hero h1 {
	text-align: center;
	width: 85vw;
	color: #fff;
	font-weight: bold;
	font-family: 'Times New Roman', Times, serif;
	position: absolute;
	top: 300px;
	left: 50%;
	transform: translateX(-50%) rotate(-10deg);
}