
	/* General */

	:root {
		--max-width: 1400px;
	}
	body {
		font-size: 13px;
		line-height: 20px;
		font-family: 'helvetica', sans-serif;
		margin: 0;
		padding: 0 20px;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		min-height: 100dvh;
		align-items: center;
		box-sizing: border-box;
	}

	a {
		color: black;
		text-decoration: none;
	}

	/* Header */
	header {
		padding: 40px 0 16px;
		display: flex;
		justify-content: space-between;
		width: 100%;
		max-width: var(--max-width);
		box-sizing: border-box;
		align-items: flex-end;
	}

	#logo {
		z-index: 20;
	}

	nav ul {
		display: flex;
		flex-direction: row;
		list-style: none;
		background: transparent;
		padding-left: 0;
		position: relative;
		width: auto;
		height: auto;
		align-items: center;
		gap: 2rem;
		justify-content: flex-end;
		margin: 0;
	}

	@media screen and (max-width: 767px) {
		nav ul {
			position: fixed;
			display: flex;
			z-index: -1;
			width: 100vw;
			height: 100dvh;
			flex-direction: column;
			left: 0;
			top: 0;
			justify-content: center;
			opacity: 0;
			transform: translateY(3%);
			transition: background-color 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
			margin-top: 0;
		}
		nav ul.open {
			background: white;
			pointer-events: auto;
			opacity: 1;
			z-index: 10;
			transform: translateY(0);
		}
	}

	.hamburger_btn {
		display: flex;
		flex-direction: column;
		position: relative;
		gap: 10px;
		width: 39px;
		height: 20px;
		border: none;
		background: none;
		z-index: 20;
	}
	.fixed_body {
		max-height: 100dvh;
		overflow: hidden;
	}
	.hamburger_btn div {
		height: 4px;
		width: 100%;
		background-color: black;
		transition: transform 0.4s ease, opacity 0.4s ease;
	}
	.hamburger_btn.open div:first-child {
		transform: translateY(7px) rotate(45deg);
	}
	.hamburger_btn.open div:last-child {
		transform: translateY(-7px) rotate(-45deg);
	}
	@media screen and (min-width: 768px) {
		.hamburger_btn {
			display: none;
		}
	}

	/* Content  */
	#content {
		margin: 0 0 60px 0;
		width: 100%;
		max-width: var(--max-width);
		align-items: flex-start;
	}

	.press {
		list-style: none;
		padding-left: 0;
	}

	.press-item {
		margin-bottom: 40px;
		display: flex;
		gap: 20px;
		align-items: flex-start;
	}
	.press-item img {
		width: auto;
		height: auto;
		max-width: 30%;
	}
	.press-item h3, .press-item h4, .press-item p {
		font-weight: normal;
		margin: 0;
	}
	.press-item h4 {
		margin-bottom: 10px;
	}


	footer {
		background: white;
		text-align: center;
		font-size: 9px;
	}
	footer > .copyright {
		color: #848484;
	}



	/* Portfolio Page */
	#projects {
    display: grid;
    gap: 1rem; /* Space between grid items */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));  /* Responsive columns */
		grid-auto-columns: minmax(200px, 1fr);
}
@media (max-width: 460px) {
  #projects {
    grid-template-columns: repeat(2, 1fr); /* Force at least 2 columns on small screens */
  }
}

.project-selector {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    box-sizing: border-box;
    line-height: 1.1;
}

	.project-selector .project-title {
		display: flex;
		width: 100%;
		padding: 5px 0;
	}
	.project-selector-img {
		width: 100%;
		height: auto;
	}
	.project-selector:hover:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(255, 255, 255, 0.3); /* Semi-transparent background */
		mix-blend-mode: overlay; /* Blends background color with the image */
		z-index: 1;
	}
	.project_wrapper {
		display: flex;
		flex-direction: column;
	}
	.project_wrapper .columns {
		columns: 400px;
		column-gap: 2vw;
		line-height: 0;
	}
	@media screen and (min-width: 800px) {
		.project_wrapper .columns {
			column-gap: 1.5vw;
		}
	}
	@media screen and (min-width: 1100px) {
		.project_wrapper .columns {
			columns: 500px;
			column-gap: 1vw;
		}
	}

	.project_wrapper img {
		margin-bottom: 2vw;
	}
	@media screen and (min-width: 800px) {
		.project_wrapper img {
			margin-bottom: 1.5vw;
		}
	}
	@media screen and (min-width: 1100px) {
		.project_wrapper img {
			margin-bottom: 1vw;
		}
	}
	.hidden-xs {
		display: none;
	}
	@media screen and (min-width: 768px) {
		.hidden-lg {
			display: none;
		}
		.hidden-xs {
			display: block;
		}
	}
	.social-media-icons {
		display: flex;
		gap: 1rem;
	}
	.social-media-icons img {
		width: 1.5rem;
		height: 1.5rem;
		opacity: 0.8;
	}
	.social-media-icons:hover {
		opacity: 1;
	}
	.phone-footer {
		display: flex;
		flex-direction: column;
		gap: .6rem;
		width: 100%;
		font-size: 10px;
		line-height: 22px;
		padding: 0 0 10px;
		justify-content: center;
		align-items: center;
	}
	@media screen and (min-width: 768px) {
		.phone-footer {
			flex-direction: row;
		}
	}
.contact {
	display: flex;
	align-items: flex-start;
	gap: 2rem;

}
.contact > div {
	align-items: center;
	text-align: center;
	width: 100%;
}
.contact .social-media-icons {
	justify-content: center;
}
@media screen and (min-width: 768px) {
	.contact > div {
		align-items: flex-start;
		text-align: left;
	}
	.contact .social-media-icons {
		justify-content: left;
	}
}


/* Slider */
.slick-prev:before, .slick-next:before {
	display: none;
}

.slider-container {
	margin-bottom: 40px;
}
@media screen and (min-width: 1030px) {
	.slider-container {
		padding: 0;
	}
	.slick-prev:before, .slick-next:before {
		display: block;
		color: #245d2a!important;
	}
}
.slider-item {
	width: 100%;
}
.slider-item img {
	width: 100%;
	height: auto;
}

h2 {
	text-align: left;
	font-weight: 400;
	font-size: 18px
}

.slick-dots {
	text-align: right!important;
	bottom: 0!important;
}

@media screen and (max-width: 500px) {
	.slick-dots li {
		margin: 0 0!important;
		width: 15px!important;
	}
	.slick-dots li button {
		width: 18px!important;
	}
}
.slick-track h2 {
	z-index: 10;
	margin-bottom: 0;
}

