*{
    margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Montserrat", serif;
	scroll-behavior: smooth;
	list-style: none;
}
header{
	position: sticky;
	top: 0;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-around;
	z-index: 50;
	border-bottom: 1px solid black;
}
header ul{
	display: flex;
}
header a{
	margin-left: 1rem;
	margin-right: 1rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background-color: black;
  margin: 3px 0;
}
.nav-menu {
  display: flex;
  list-style: none;
  padding: 1rem;
  margin: 0;
  gap: 1rem;
}
section{
	display: grid;
	justify-content: center;
	margin-top: 5rem;
	margin-bottom: 5rem;
	text-align: center;
}
section a{
	display: inline-block;
	justify-self: center;
}
footer{
	display: grid;
	justify-content: center;
	align-content: center;
	padding: 5px;
}
footer a{
	display: inline-block;
	justify-self: center;
}
footer button svg{
	margin-right: 0;
}
footer .text-list{
	padding: 1rem;
	text-align: start;
	border-top: 1px solid black;
}
footer .socials{
	justify-content: center;
	margin-top: 0;
	margin-bottom: 0;
}
footer .socials svg{
	margin-top: 0;
	margin-bottom: 0;
	width: 1.5rem;
}
footer .socials a{
	margin-left: 1rem;
}
h1{
	font-family: "Playfair Display", serif;
    font-size: 4rem;
    font-weight: bold;
	padding-top: 1rem;
	padding-bottom: 1rem;
}
h2{
	font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: bold;
	padding-top: 1rem;
	padding-bottom: 1rem;
}
p{
	padding-top: 1rem;
	padding-bottom: 1rem;
}
a{
	text-decoration: none;
	color: #000;
}
img{
	border-radius: 1rem;
}
svg{
	width: 1rem;
	margin-right: 1rem;
	justify-content: center;
	text-align: center;
}
button{
	transition: 80ms;
	padding: 1rem;
	background-color: #000;
	color: #fff;
	border: 1px solid black;
	display: flex;
}
button:hover{
	transition: 80ms;
	background-color: #fff;
	color: #000;
	cursor: pointer;
}
.img-text{
	display: flex;
	align-items: center;
	justify-content: center;
}
.text-content{
	max-width: 33%;
	padding: 2rem;
	text-align: left;
}
.text-list *{
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	text-align: center;
	align-items: center;
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.gallery{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.gallery img{
	margin: 2rem;
	box-shadow: 0 6px 8px -1px rgb(0 0 0 / 0.1);
}
.service-list{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
	gap: 1rem;
}
.service-list h2{
	padding-top: 0;
}
.service-list li{
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.service{
	max-width: 33%;
}
.service-list img{
	max-width: 33%;
	height: auto;
}
.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.dots {
  flex: 1;
  border-top: 2px dotted #000;
  margin: 0 0.5rem;
}
@media (max-width: 768px) {
	header{
		padding: 0.5rem;
	}
	header img{
		width: 15%;
	}
	.img-text iframe{
		width: 100%;
		height: 50vh;
	}
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
  	top: 50px;
  	left: 0;
  	width: 100%;
  	background: white;
  	flex-direction: column;
  	align-items: center;
  	max-height: 0;
  	overflow: hidden;
	display: none;
  }
  .nav-menu.active {
     max-height: 100%;
	 border-bottom: 1px solid black;
	 display: flex;
  }
  .nav-menu li {
    margin: 1rem 0;
  }
  .nav-menu a{
	padding: 1rem;
  }
  h1{
	font-size: 3rem;
  }
  h2{
	font-size: 2rem;
  }
  .img-text{
	flex-direction: column;
  }
  .img-text img{
	width: 50%;
  }
  .text-content{
	max-width: 100%;
  }
  .service-list{
	flex-direction: column;
  }
  .service-list img{
	margin: 2rem;
	width: 100%;
	max-width: 75%;
  }
  .service{
	max-width: 100%;
	padding: 2rem;
  }
  .text-list{
	padding: 1rem;
  }
  footer {
    margin-top: 10rem;
	width: 100%;
  }
}