*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html, body{
	width: 100%;
	height: 100%;
    position: relative;
    margin: 0;
    padding: 0;
	font-size: 16px;
	font-weight: 300;
	font-family: 'Montserrat', sans-serif;
}

#intro{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
#intro .image{
	flex-basis: 50%;
}
#intro .image img{
	width: 100%;
	height: 1000px;
	object-fit: cover;
	border-radius: 0 0 300px 0;
}
#intro .text{
	flex-basis: 50%;
	padding: 100px;
}
#intro .text img{
	width: 400px;
	margin-bottom: 20px;
}
b{
	font-weight: bold;
}

ul{
	margin-left: 0;
	list-style: none;
	line-height: 1.8;
}
ul li a{
	color: #b8a54c;
}

h1{
	font-size: 50px;
	font-weight: 300;
	letter-spacing: 2px;
	margin-bottom: 30px;
}

p{
	margin-bottom: 10px;
	line-height: 1.8;
}

footer{
	margin-top: 100px;
	display: flex;
	padding: 100px 20px;
	background-color: #b8a54c;
	color: white;
	justify-content: center;
	gap: 50px;
	flex-wrap: wrap;
	align-items: center;
	line-height: 1.8;
}

footer a{
	color: white;
}

footer .image{
	width: 250px;
	height: 250px;
	border-radius: 50%;
	overflow: hidden;
	flex-basis: 250px;
}
footer .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

footer .text img{
	width: 300px;
	display: block;
	margin-bottom: 20px;
}

@media screen and (max-width: 1400px){
	html, body{
		font-size: 16px;
	}
	#intro .image{
		flex-basis: 50%;
	}
	#intro .image img{
		height: 800px;
		border-radius: 0 0 250px 0;
	}
	#intro .text{
		flex-basis: 50%;
		padding: 50px;
	}
	#intro .text img{
		width: 300px;
	}

	h1{
		font-size: 40px;
	}
	footer{
		margin-top: 80px;
		padding: 80px 20px;
		gap: 50px;
	}
}

@media screen and (max-width: 1050px){
	html, body{
		font-size: 16px;
	}
	#intro .image{
		flex-basis: 100%;
	}
	#intro .image img{
		height: 600px;
		object-position: bottom center;
		border-radius: 0 0 150px 0;
	}
	#intro .text{
		flex-basis: 100%;
		padding: 20px;
	}
	#intro .text img{
		width: 250px;
	}

	h1{
		font-size: 30px;
	}
	footer{
		margin-top: 60px;
		padding: 60px 20px;
		gap: 30px;
	}

	footer .image{
		width: 200px;
		height: 200px;
		flex-basis: 200px;
	}
	footer .text img{
		width: 200px;
	}
}

@media screen and (max-width: 650px){
	html, body{
		font-size: 14px;
	}
	#intro .image img{
		height: 400px;
		border-radius: 0 0 100px 0;
	}
	#intro .text img{
		width: 200px;
	}

	h1{
		font-size: 25px;
	}
	footer{
		margin-top: 50px;
		padding: 50px 20px;
		gap: 20px;
		text-align: center;
	}

	footer .image{
		width: 200px;
		height: 200px;
		flex-basis: 200px;
	}

	footer .text{
		flex-basis: 100%;
	}

	footer .text img{
		width: 200px;
		display: block;
		text-align: center;
		margin: auto;
		margin-bottom: 10px;
	}
}