* {
	min-width: 0;
	min-height: 0;
}

body {
	font-family: 'Manrope', serif;
	overflow-x: hidden;
}

h5 {
	font-size: 1.4rem;
}

h1,h2,h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
}

.copies {
	color: #444444;
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
	margin-bottom: 6rem;
}

.copies h1 {
	font-size: 3rem;
}

.copies h2 {
	font-weight: normal;
	font-size: 1.5rem;
	line-height: 1.75;
}

.wrapper {
	position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

main > .container {
	padding-top: 5rem;
	padding-bottom: 5rem;
	display: flex;
	align-items: center;
	height: 100%;
}

.form {
	background-color: #fff;
	border-radius: .5rem;
	padding: 1.5rem;
	border: 1px solid #ccc;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.form input[type="number"]::-webkit-inner-spin-button,
.form input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.form input[type="number"] {
	-moz-appearance: textfield;
}

.backg {
	position: relative;
	background-image: url(/assets/landing/bg-desktop.jpg);
	background-size: cover;
	height: 100vh;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
}

.hero img {
	object-fit: cover;
    height: 100vh;
    width: 100%;
}

@media screen and (max-width: 768px) {
	.hero img {
		height: unset;
	}
	.logo {
		display: none;
		/*left: 0;
		width: 100%;
		text-align: center;*/
	}
	.copies {
		text-align: center;
		margin-bottom: 4rem;
		padding: 0 1.5rem;
	}

	.copies h1 {
		font-size: 2rem;
	}

	.copies h2 {
		font-size: 1.25rem;
		letter-spacing: -0.75px;
	}
	.form {
		padding: 1.5rem;
		margin: 0 1rem;
	}
	main {
		height: auto;
	}
	main>.container {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
}