body,
html {

	margin: 0;
	padding: 0;


}

h1 {
	color: white;
}

body {
	width: 100%;
	/* vw stands for viewport width */


	background-image: linear-gradient(to bottom, #141E30, #243B55);
	animation: page-fade 0.2s;
}

a:not([href]):not([tabindex]) {
  color: rgba(238, 235, 227, 1);

}

a:not([href]):not([tabindex]):hover {
  color: rgba(238, 235, 227, 1);

}

/* Underline from left to right */
.underline-left {
    position: relative;
    text-decoration: none;
    color: rgba(238, 235, 227, 1);
	cursor: pointer;
}

.underline-left::after {
    content: "";
    position: absolute;
    left: 0; /* Start from the left */
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--random-color);
    transition: width 0.3s ease-in-out; /* Only width 
	transition */
	cursor: pointer;
}

.underline-left:hover::after {
    width: 100%; /* Expand to the right */
}

/* Underline from right to left */
.underline-right {
    position: relative;
    text-decoration: none;
    color: rgba(238, 235, 227, 1);
	cursor: pointer;
}

.underline-right::after {
    content: "";
    position: absolute;
    right: 0; /* Start from the right */
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--random-color);
    transition: width 0.3s ease-in-out; /* Only width transition */
	cursor: pointer;
}

.underline-right:hover::after {
    width: 100%; /* Expand to the left */
    right: 0; /* Align to the left edge */
}



/*/background: linear gradient to right rgba(color)/*/


body::-webkit-scrollbar {
	display: none;
}

@keyframes page-fade {
	from {
		opacity: 0;
		transform: translateY(-20px);

	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

#flashingtext {
	width: 100%;
	height: 100%;
}

.fade-in {
	opacity: 0;
	transition: opacity 0.25s ease-in;
}

.fade-in.appear {
	opacity: 1;
}

.from-bottom {
	opacity: 0;
	transform: translateY(50%);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.from-bottom.appear {
	transform: translateY(0);
	opacity: 1;
}

.from-right {
	opacity: 0;
	transform: translateX(50%);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.from-right.appear {
	transform: translateX(0);
	opacity: 1;
}




@media screen and (min-width: 992px) {


	h2{
		color: white;
		font-size: 1.2rem;
		display: inline-block;
	}

	#nav-mobile-container {
		display: none;
	}

	#nav-home-container {
		position: fixed;
		top: 0;
		z-index: 999;
		transition: transform 0.3s ease;
		height: 7.5vh;
		width: 100%;

	}

	#nav-home {
		width: 100%;
		flex-direction: column;
		margin-bottom: 50px;
		height: auto;
		position: relative;
		z-index: 1000;



	}

	.topnav {
		display: flex;
		column-gap: 20px;
		justify-content: center;
		align-items: center;
		position: relative;
		z-index: 1000;
		background-image: linear-gradient(to bottom, #141E30, #141E30, rgba(0, 0, 0, 0));
		height: 100%;


	}

	.nav-line {
		position: absolute;
		bottom: 0;
		width: 60%;
		border-bottom: solid 1px rgba(238, 235, 227, 1);
		border-radius: 10px;
		margin-bottom: -1px;
	}


	.home-container,
	.werk-container {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 60px;
		width: 160px;
		cursor: pointer;
		
	}


	
	.werk {
		position: absolute;
		display: flex;
		flex-direction: column;
		top: 60px;
		width: 180px;
	}

.nav-home-titel,
.nav-werk-titel {
	position: relative;
    display: inline-block;
    text-decoration: none;
    color: rgba(238, 235, 227, 1);
    font-family: "Karla", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    font-size: 1rem;
	transition: transform .5s ease;


}

.nav-home-titel:hover, 
.nav-werk-titel:hover {

	 color: rgba(238, 235, 227, 1);
	text-decoration: none;
}


.dropdown-content {
    display: none; /* Initially set to none */
    top: 0;
	width: 100%;
	opacity: 0;
    position: absolute;
    text-align: left;
    left: 0;
    transition: opacity 0.1s ease, transform 0.3s ease; /* Transition opacity and transform */
    z-index: 1000;
	background-color: RGBA(0, 0, 0, .5);
	

}

	.dropdown-kropman:hover,.dropdown-famo:hover, .dropdown-mom:hover {
			background-color: RGBA(0, 0, 0, .3);
	}


	.dropdown-content a {
		text-decoration: none;
		color: rgba(238, 235, 227, 1);
		font-family: "Karla", sans-serif;
		font-weight: 200;
		font-style: normal;
		display: block;
		font-size: 1rem;
		line-height: 1.2;
		white-space: nowrap;
		margin-bottom: 2%;
		padding: 4%;


	}


	.pagefill {
		position: relative;
		height: 100vh;
	}


	.captionpage {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin: 0 auto;
		height: 100vh;
		-webkit-user-select: none;
		/* Safari */
		-moz-user-select: none;
		/* Firefox */
		-ms-user-select: none;
		/* Internet Explorer/Edge */
		user-select: none;
		/* Standard syntax */


	}
	
	.arrow-ani {
		height: auto;
	}

	.arrow-down {
		position: relative;
		width: 80px;
		height: 80px;
		margin: 20px;
		border-radius: 50%;
		/* This makes the square circular */
		border: 2px solid rgba(238, 235, 227, 1);
		overflow: hidden;

	}

	.arrow-down:hover {
		background-color: rgba(0, 0, 0, 0.3);
	}

	.arrow-down img {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		max-width: 100%;
		/* Ensure the image doesn't exceed the size of the circle */
		max-height: 100%;
		/* Ensure the image doesn't exceed the size of the circle */
		width: 100%;
	}

	.text-portfolio {
		position: relative;
		display: inline-block;
		color: rgba(238, 235, 227, 1);
		font-size: 4.66rem;
		font-family: "Karla", sans-serif;
		font-weight: 800;
		font-style: normal;

	}

	.h2-container {
		position: relative;
		display: flex;
		align-items: center;
	}


	.profiel {
		display: flex;
		width: 100%;
		align-items: flex-end;
		justify-content: flex-start;

	


	}

	.profiel-img {
		width: 30%;
		overflow: hidden;
		
	}

	.cv-pf {
		width: 100%;
		height: auto;
		object-fit: cover;
		display: block;


	}


	.profiel-text {
		margin-left: 10%;
		width: 600px;
		margin-right: 10%;
		



	}

	

	.profiel-titel {
		color: white;
		font-size: 1.78rem;
		font-family: "Karla", sans-serif;
		font-weight: 500;
		font-style: normal;
		text-transform: uppercase;
		margin-bottom: 2%;
	}

	.profiel-uitleg {

		color: rgba(238, 235, 227, 1);
		font-family: "Spectral", serif;
		font-weight: 300;
		font-style: normal;
		width: 100%;
		font-size: 1.1rem;
		line-height: 1.7;
	}


	.h3-container {
		display: flex;
		align-items: center;
		position: relative;
	}
	

	.referentie {
		position: relative;
	}

	.ref-titel {
		position: absolute;
		top: 10%;
		
		margin-left: 10%;
		font-size: 1.78rem;
		font-family: "Karla", sans-serif;
		font-weight: 500;
		font-style: normal;
		text-transform: uppercase;
		color: rgba(238, 235, 227, 1);
		

	}

	.ref-row {
		position: relative;
		display: flex;
		margin: 10%;
		grid-gap: 40px;
		align-content: space-between;

	}

	.Kropman {
		grid-column: 1/6 2;
		grid-row: 1/1;
	}

	.Famostar {
		grid-column: 3/6 2;
		grid-row: 1/1;

	}

	.Project {
		grid-column: 5/6 2;
		grid-row: 1/1;
	}


	.column {
		position: relative;
		overflow: hidden;

		width: 100%;
	


	}

	.column img {
		transition: transform 0.5s, filter 0.5s;
		/* Add transitions for transform and filter properties */
		

	}

	.column:hover img {
		transform: scale(1.0);
		/* Zoom in the image */
		filter: blur(5px);
		/* Apply blur effect */
		cursor: pointer;
	}

	.ref-row::after {
		content: "";
		clear: both;
		display: table;

	}

	.img-ref {
		display: block;
		width: 100%;
		height: auto;

	}



	.overlay {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		height: 100%;
		width: 100%;
		opacity: 0;
		transition: .5s ease;
		background-color: rgba(0, 0, 0, 0.5);
		padding: 40px;


	}

	.column:hover .overlay {
		opacity: 1;
		cursor: pointer;

	}

	.overlay-text {
		color: rgba(238, 235, 227, 1);
		font-family: "Karla", sans-serif;
		font-weight: 400;
		font-style: normal;
		font-size: 1.2rem;
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		text-align: center;
	}

	

	
	.top-border {
		width: 60%;
		margin: 0 auto;
		left: 50%;
		transform: translate(-50%);
		position: absolute;
		top: 0;
		border-top: 1px solid rgba(238, 235, 227, 1);
		border-radius: 10px;
	}

	.contact-me {
		position: absolute;
		bottom: 5%;
		right: 5%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-content: flex-end;
		align-items: flex-end;




	}

	.contact-text-home {
		display: flex;
		flex-direction: column;
		position: absolute;
		/* Position the content absolutely */
		bottom: 10%;
		/* Align the content to the bottom of the footer */
		right: 2%;
		/* Align the content to the left */
		margin-left: 3%;
		margin-bottom: 3%;
		font-size: 1.1rem;
		color: rgba(238, 235, 227, 1);
		text-align: right;



	}

	.contact-text-titel {
		font-size: 1.2rem;
		margin: 0;
		font-family: "Karla", sans-serif;
		font-weight: 500;
		font-style: normal;
		text-transform: uppercase;
		color: rgba(238, 235, 227, 1);
		text-align: right;
	}

	.contact-text-tel {
		display: inline-block;
		/* or inline-block */
		margin-bottom: 5px;
		/* Add spacing between links */
		width: 100%;



	}


	.contact-text-tel,
	.contact-text-mail {
		color: rgba(238, 235, 227, 1);
		text-decoration: none;
		line-height: 1.5;
		font-family: "Spectral", serif;
		font-weight: 300;
		font-style: normal;
		transition: 0.5s ease;
		font-size: 0.9rem;
		text-align: right;



	}
	
	.contact-text-tel:hover, contact-text-mail:hover {
		text-decoration: none;
		
	}




}




















@media screen and (min-width: 500px) and (max-width: 991px) {
	body {



		/* Full height and width */
		height: 180vh;
		/* vh stands for viewport height */
		width: 100%;
		/* vw stands for viewport width */

		/* Center and scale the image nicely */
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		object-fit: cover;
		background-color: rgba(238, 235, 227, 1);
		animation: page-fade 0.7s;
	}



	#nav-mobile-container {
		display: none;
	}




	.topnav {
		display: flex;
		justify-content: center;
		align-content: center;
		text-align: center;
		width: 100%;
		margin: 0 auto;
		height: 100px;
		border-bottom: solid 4px rgba(238, 235, 227, 1);
		background-color: rgba(22, 22, 29, 1);
	}



	.home,
	.werk,
	.contact {
		position: relative;
		color: rgba(238, 235, 227, 1);
		font-family: "Karla", sans-serif;
		font-weight: 400;
		font-style: normal;
		text-transform: uppercase;
		font-size: 1.2rem;
		padding: 5px 10px;
		margin: 2%;
		cursor: pointer;
		text-align: center;
		transition: .5s ease;
		text-decoration: none;
		display: inline-block;
		width: 120px;
	}

	.home a,
	.werk a,
	.contact a {
		padding: 10px;
		display: inline-block;
		text-decoration: none;
	}






	.random-color {
		text-decoration: none;
		color: rgba(238, 235, 227, 1);
	}


	.dropdown {
		z-index: 999;
		text-decoration: none;
	}

	.dropdown-content {
		background-color: RGBA(22, 22, 29, .5);
		display: block;
		position: absolute;
		text-align: left;
		height: auto;
		padding-top: 20%;
		min-width: 160px;
		top: 100%;
		left: 0;
		opacity: 0;
		display: none;
		transition: opacity 0.3s ease;
		z-index: 1000;
	}

	.werk:hover .dropdown-content {
		opacity: 1;
		display: block;
	}


	.dropdown-famo,
	.dropdown-kropman,
	.dropdown-mom {
		color: rgba(238, 235, 227, 1);
		text-decoration: none;
		display: block;
	}

	.dropdown-famo:hover,
	.dropdown-kropman:hover,
	.dropdown-mom:hover {
		color: rgba(22, 22, 29, 1);
		text-decoration: none;
		background-color: var(--random-color);
	}



	.captionpage {
		display: flex;
		justify-content: center;
		height: 400px;
		text-align: center;
		background-color: RGBA(22, 22, 29, 1);
		width: 100%;
		margin: 0 auto;
		padding: 120px;
		-webkit-user-select: none;
		/* Safari */
		-moz-user-select: none;
		/* Firefox */
		-ms-user-select: none;
		/* Internet Explorer/Edge */
		user-select: none;
		/* Standard syntax */
	}


	.text-portfolio {
		position: relative;
		display: inline-block;
		color: rgba(238, 235, 227, 1);
		font-size: 4.66rem;
		font-family: "Karla", sans-serif;
		font-weight: 800;
		font-style: normal;

	}


	.h2-container {
		position: relative;
		width: 100%;
		



	}

	.profiel {
		display: flex;
		align-content: center;
		justify-items: center;
		width: 100%;
		height: 500px;
		margin: 0 auto;
		column-gap: 0px;
		background-color: RGBA(22, 22, 29, 1);
		padding-bottom: 120px;

	}

	.profiel-img {
		margin-right: 5%;
	}

	.cv-pf {
		width: 40%;
		height: auto;
		float: right;


	}

	.profiel-text {
		position: absolute;
		bottom: 0;
		width: 100%;
		background-color: RGBA(22, 22, 29, 0.5);






	}

	.profiel-titel {
		font-size: 1, 78rem;
		font-family: "Karla", sans-serif;
		font-weight: 500;
		font-style: normal;
		text-transform: uppercase;
	}

	.profiel-uitleg {
		color: rgba(238, 235, 227, 1);
		font-family: "Spectral", serif;
		font-weight: 300;
		font-style: normal;
		font-size: 1.1rem;
		width: 550px;
	}

	.text-box {
		font-size: 1.1rem;
		color: rgba(238, 235, 227, 1);
		margin-left: 5%;
		line-height: 1.3;

	}

	.h3-container {
		position: relative;
		padding: 3%;
		width: 100%;
		height: auto;
		background-color: RGBA(22, 22, 29, 1);
		padding-top: 150px;

	}

	.ref-row {
		width: 100%;
		display: flex;
		padding-top: 60px;






	}

	.ref-titel {
		position: absolute;
		font-family: "Karla", sans-serif;
		font-weight: 500;
		font-style: normal;
		text-transform: uppercase;
		color: rgba(238, 235, 227, 1);

	}

	.column {
		position: relative;
		overflow: hidden;
		width: 100%;


	}

	.column img {
		transition: transform 0.5s, filter 0.5s;
		/* Add transitions for transform and filter properties */

	}

	.column:hover img {
		transform: scale(1.05);
		/* Zoom in the image */
		filter: blur(5px);
		/* Apply blur effect */
		cursor: pointer;
	}

	.ref-row::after {
		content: "";
		clear: both;
		display: table;

	}

	.img-ref {
		display: block;
		width: 100%;
		height: auto;

	}



	.overlay {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		height: 100%;
		width: 100%;
		opacity: 0;
		transition: .5s ease;
		background-color: rgba(0, 0, 0, 0.8);

	}

	.column:hover .overlay {
		opacity: 1;
		cursor: pointer;

	}

	.overlay-text {
		color: rgba(238, 235, 227, 1);
		font-family: "Karla", sans-serif;
		font-weight: 400;
		font-style: normal;
		font-size: 1.2rem;
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		text-align: center;
	}


	.h4-container {
		
		border-top: 4px solid rgba(238, 235, 227, 1);
		position: relative;
		display: flex;
		width: 100%;
		margin: 0 auto;
		height: 200px;
		background-color: RGBA(22, 22, 29, 1);



	}

	.contact-text-home {
		width: 20%;
		position: absolute;
		/* Position the content absolutely */
		bottom: 0;
		/* Align the content to the bottom of the footer */
		left: 0;
		/* Align the content to the left */
		margin-left: 3%;
		margin-bottom: 3%;
		display: flex;
		flex-direction: column;
		font-size: 1.1rem;
		color: rgba(255, 255, 255, 1);


	}


	.contact-text-titel {
		font-family: "Karla", sans-serif;
		font-weight: 500;
		font-style: normal;
		text-transform: uppercase;
		color: rgba(238, 235, 227, 1);
	}

	.contact-text-tel {
		display: block;
		/* or inline-block */
		margin-bottom: 5px;
		/* Add spacing between links */


	}

	.contact-text-mail {
		display: block;
		/* or inline-block */
		margin-bottom: 10px;
		/* Add spacing between links */
	}

	.contact-text-tel,
	.contact-text-mail {
		color: rgba(255, 255, 255, 1);
		text-decoration: none;
		font-family: "Spectral", serif;
		font-weight: 300;
		font-style: normal;
		transition: 0.5s ease;


	}





}



















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

	.from-bottom {
		transform: translateY(0); 
	}


	.column {
		width: 100%;
	}

	body, html {
		margin: 0;
		padding: 0;
		background-image: linear-gradient(to bottom, #141E30, #243B55);
		/* forceer verticale scroll, voorkom horizontale */
		overflow-y: auto !important;
		overflow-x: hidden !important;
		height: auto;
		min-height: 100%;
		-webkit-overflow-scrolling: touch;
	}

	


	#nav-home-container {
		display: none;
	}

	#nav-mobile-container {
		display: block;
	}

	nav {
		position: fixed;
		top: 0;
		background-image: linear-gradient(to bottom, #141E30, #141E30);
		width: 100%;
		z-index: 999;

	}

	.burger-mobile {
		position: relative;
		text-align: left;
		height: 70px;
		width: 70px;
		color: rgba(238, 235, 227, 1);
		z-index: 999;
	}

	.hamburger-menu {
		display: inline-block;
		cursor: pointer;
		padding: 40%;
	}

	.hamburger-menu span {
		display: block;
		width: 25px;
		height: 3px;
		margin-bottom: 5px;
		background-color: rgba(238, 235, 227, 1);
		transition: transform 0.5s ease, opacity 0.5s ease;

	}

	/* Animation */
	.hamburger-menu span:nth-child(2) {
		margin-left: 5px;
		margin-right: 5px;
	}

	.hamburger-menu.active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.hamburger-menu.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger-menu.active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}






	.fold {
		display: block;
		position: absolute;

		width: 100%;
		overflow: hidden;
		color: rgba(238, 235, 227, 1);
		transform: translateX(-100%);
		opacity: 0;
		transition: background-color 2.5s ease, opacity 0.2s ease, transform 0.3s ease-in;
		z-index: 999;
		background-color: rgba(0, 0, 0, 0);
	}

	.fold.folded {
		position: fixed;
		overflow: hidden;
		width: 100%;
		height: 100%;
		/* Additional styles for the folded state */
		transform: translateX(0);
		top: 70px;
		opacity: 1;
		background-color: rgba(0, 0, 0, 0.4);
		left: 0;
	}






	.fold-items {
		display: flex;
		flex-direction: column;
		color: rgba(238, 235, 227, 1);
		font-size: 2.1rem;
		text-decoration: none;
		width: 100%;
		flex-wrap: nowrap;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
		background-color: RGBA(0, 0, 0, .7);



	}

	.home-text {
		align-self: flex-start;
		color: rgba(238, 235, 227, 1);
		text-decoration: none;
		

		width: 100%;


	}

	.home {
		z-index: 999;
	
	}

	.home,
	.werk,
	.contact {
		padding: 5%;
		padding-left: 10%;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		position: relative;
		width: 100%;
		font-family: "Karla", sans-serif;
		font-weight: 300;
		font-style: normal;

		
	}

	.werk {
		padding: 0;


	}

	.werk-drop {
		position: relative;
	}
	
	.werk-text {
		transition: font-weight .3s ease;
	}

	.werk-text {
		padding: 5%;
		padding-left: 10%;
		color: rgba(238, 235, 227, 1);
		z-index: 999;
		text-decoration: none;



	}

	.flex-fold {
		position: absolute;
		overflow: hidden;
		top: 100%;
		left: 0;
		padding-bottom: 5%;
		display: flex;
		width: 100%;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		z-index: 998;


	}

	.flex-fold a {
		position: relative;
		text-align: left;
		/* Align text to the left within each column */
		height: auto;
		width: 80%;
		padding: 3%;
		padding-left: 0%;
		margin: 0 auto;
		font-size: 1.3rem;
		line-height: 1.2;
		font-family: "Karla", sans-serif;
		font-weight: 200;
		color: rgba(238, 235, 227, 1);
		text-decoration: none;
		border-bottom: 1px solid rgba(238, 235, 227, 1);





	}

	#fold-werk {

		display: none;
		opacity: 0;
		transition: transform 0.6s ease, opacity 0.4s ease;

	}



	#contact {
		position: relative;
		transition: margin-top 0.6s ease;
		/* Voeg een overgang toe voor de margin-top */
		margin-top: 0px;
		width: 100%;



	}

	.contact-text-burger {

		color: rgba(238, 235, 227, 1);
		text-decoration: none;




	}

	.captionpage {
		width: 100%;
		height: 300px;
		padding-top: 30px;
		padding-bottom: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		justify-items: center;
		overflow: hidden;
		

	}


	.text-portfolio {
		display: inline-block;
		font-size: 3rem;
		font-weight: 700;
		color: rgba(238, 235, 227, 1);
	}
	
	.arrow-ani {
		display: none;
	}


	.h2-container {
		
		z-index: 9;
		padding-bottom: 40px;
	}


	.profiel {
		width: 100%;
		height: 400px;
		position: relative;
		color: rgba(238, 235, 227, 1);


	}

	.profiel-titel {
		font-size: 2rem !important;
		font-family: "Karla", sans-serif;
		font-weight: 500;
		font-style: normal;
		text-transform: uppercase;
	}

	.profiel-text {
		bottom: 0;
		position: absolute;
		margin: 20px;
		background-color: rgba(22, 22, 29, 0.5);
		z-index: 1;
		padding: 2%;
		
	}



	.profiel-uitleg {
		font-family: "Spectral", serif;
		font-weight: 300;
		font-style: normal;
		font-size: .9rem;

	}

	.profiel-img {
		position: relative;
		float: right;
		padding: 20px;
		width: 50%;
	}

	.profiel-img img {
		width: 100%;
	}

	.ref-row {
		width: 100%;
		margin: 0 auto;
		display: flex;
		padding: 20px;
		flex-direction: column;

		



	}


	.ref-titel {
		margin-left: 5%;
		font-size: 2rem;
		font-family: "Karla", sans-serif;
		font-weight: 500;
		font-style: normal;
		text-transform: uppercase;
		color: rgba(238, 235, 227, 1);

	}


	.column {
		
		padding-bottom: 5%;



	}

	.column img {
		transition: transform 0.5s, filter 0.5s;
		/* Add transitions for transform and filter properties */

	}

	.column:hover img {
		transform: scale(1.05);
		/* Zoom in the image */
		filter: blur(5px);
		/* Apply blur effect */
		cursor: pointer;
	}

	.ref-row::after {
		content: "";
		clear: both;
		display: table;

	}

	.img-ref {
		display: block;
		width: 100%;
		height: auto;

	}



	.overlay {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		height: 100%;
		width: 100%;
		opacity: 0;
		transition: .5s ease;
		background-color: rgba(0, 0, 0, 0.8);

	}

	.column:hover .overlay {
		opacity: 1;
		cursor: pointer;

	}

	.overlay-text {
		color: rgba(238, 235, 227, 1);
		width: 70%;
		text-align: center;
		font-family: "Karla", sans-serif;
		font-weight: 400;
		font-style: normal;
		font-size: 0.6rem;
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		margin: 0 auto;
	}




	.contact-me {
		width: 100%;
		display: flex;
		position: fixed;
		bottom: 0;
		height: 30px;
		background-color: #141E30;
	}

	.contact-text-home {
		height: 100%;
		font-size: 1.5rem;
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-end;
		column-gap: 20px;
		color: rgba(238, 235, 227, 1);
	}

	.contact-text-titel {
		display: none;
	}

	.contact-text-mail,
	.contact-text-tel {
		font-family: "Spectral", serif;
		font-weight: 300;
		font-style: normal;
		color: rgba(238, 235, 227, 1);
		font-size: .9rem;
		text-decoration: none;
	}

}