html,
body,
h1,
p {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Poppins', sans-serif;
	font-size: 23px;
	font-weight: 300;
}

#hero {
	align-items: center;
	background-image: url(bg.jpg);
	background-position: center;
	background-size: cover;
	color: #fff;
	display: flex;
	height: 100vh;
	min-height: 400px;
	text-shadow: 1px 1px 3px rgb(0 0 0 / 40%);
	width: 100%;
}

#hero-msg {
	padding: 25px;
}

h1 {
	font-size: 50px;
	font-weight: 700;
	margin: 16px 0 32px;
}

#logo {
	display: inline-block;
	margin: 0 15px -8px 0;
}

.button {
	background: #1d759f;
	border-radius: 3px;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	padding: 15px 20px;
	text-decoration: none;
	text-shadow: none;
	text-transform: uppercase;
	transition: background 0.4s;
}

.button:hover {
	background: #063b54;
}

.button-disabled,
.button-disabled:hover {
	background: #bbb;
	cursor: default;
}

#hero .button {
	box-shadow: 1px 1px 3px rgb(0 0 0 / 40%);
}

#offer {
	height: 100vh;
	padding: 0 25px;
}

#offer-title {
	font-size: 32px;
	font-weight: bold;
	padding: 30px 0 20px;
}

label {
	display: table;
	font-size: 18px;
	line-height: 25px;
	margin-bottom: 5px
}

input,
textarea {
	border: 1px solid #063b54;
	border-radius: 3px;
	box-sizing: border-box;
	display: block;
	font-family: 'Outfit', sans-serif;
	font-size: 16px;
	margin-bottom: 20px;
	outline: none;
	padding: 10px;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 1px solid #1d759f;
}

input {
	height: 40px;
}

textarea {
	height: 220px;
}

#offer-columns-wrapper:after {
	content: "";
	display: table;
	clear: both;
}

#offer-column-1,
#offer-column-2 {
	box-sizing: border-box;
	float: left;
	width: 50%;
}

#offer-column-1 {
	padding-right: 12.5px;
}

#offer-column-2 {
	padding-left: 12.5px;
}

#offer-button-wrapper {
	float: left;
	padding: 10px 0 60px;
}

#offer-reply {
	float: left;
	font-size: 18px;
	margin: 22px 0 0 18px;
	opacity: 0;
	transition: opacity 0.4s;
}