*,
*::after,
*::before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	font-family: 'Poppins', Arial, Helvetica, sans-serif;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
body {
	line-height: 1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
html {
	font-size: 62.5%;
}
h1 {
	font-size: 2.6rem;
}
li,
button,
label,
input,
p {
	font-size: 2rem;
}
h2 {
	font-size: 4.8rem;
}
h3 {
	font-size: 3rem;
	font-weight: 400;
}
h4,
h5 {
	font-size: 2.8rem;
}
a {
	color: white;
	text-decoration: none;
}
button {
	padding: 2rem 6rem;
	background: #4c6e97;
	border: none;
	color: white;
	font-size: 1.8rem;
	cursor: pointer;
	transition: background .5s ease-in-out;
}
button:hover {
	background: #364e6b;
}
/* Main */
.main-head {
	background: #131c27;
	color: white;
}
nav {
	padding: 2rem;
	display: flex;
	width: 90%;
	margin: auto;
	align-items: center;
	min-height: 10vh;
	flex-wrap: wrap;
}
nav ul {
	display: flex;
	flex: 1 1 40rem;
	justify-content: space-around;
	align-items: center;
}
#logo {
	flex: 2 1 40rem;
	font-family: 'Pattaya';
	font-weight: 400;
}

.hero {
	min-height: 90vh;
	background: linear-gradient(rgba(0, 0, 0, .5), transparent), url(/images/landing-page.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.hero h3 {
	padding: 5rem;
}
/* Locations Section */

#locations {
	min-height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0), transparent), url(/images/new-york-page.png);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.locations-head {
	width: 90%;
	margin: auto;
}
.locations-head h2 {
	padding: 1rem 0;
	text-decoration: underline;
	text-decoration-thickness: 0.5rem;
}
.locations-head h3 {
	padding: 4rem 0;
	background: linear-gradient(#131c27, #663b34);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.cloud {
	position: absolute;
	top: 0%;
	right: 0%;
}
.moving-cloud-1 {
	animation: cloudAnimation 3s infinite alternate ease-in-out;
	z-index: -1;
}
.moving-cloud-2 {
	top: 20%;
	z-index: -2;
	opacity: 0.5;
	animation: cloudAnimation 3.5s infinite alternate ease-in-out;
}

/* Benefits Section */
.benefits-head {
	background: #343c44;
	padding: 3rem;
	min-height: 30vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
	text-align: center;
}
.benefits-head h3 {
	padding: 1rem;
}
.cards {
	width: 90%;
	margin: auto;
	display: flex;
	min-height: 70vh;
	align-items: center;
	flex-wrap: wrap;
}
.card {
	text-align: center;
	flex: 1 1 25rem;
	min-height: 40vh;
	margin: 2rem 5rem;
	box-shadow: 0px 10px 10px rgba(0, 0, 0, .1), 0px 20px 20px rgba(0, 0, 0, .1);
}
.cards img {
	max-width: 15%;
	margin: 2rem;
}
.card h4,
.card p {
	padding: 1rem;
}
.card-icon {
	background: #343c44;
}
@keyframes cloudAnimation {
	from {
		transform: translate(10%, -10%);
	}
	to {
		transform: translate(0%, 0%);
	}
}

/* Contact */
#contact {
	min-height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, .5), transparent), url(/images/contact-mountain.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;

	display: flex;
	align-items: center;
	justify-content: center;
}

.form-wrapper {
	background: rgba(19, 28, 39, .8);
	width: 60%;
	color: white;
	border-radius: 20px;
}
.form-wrapper label {
	margin: 0rem 3rem;
}
.form-head {
	text-align: center;
	padding: 4rem;
}
.name-form,
.email-form {
	padding: 3rem;
	text-align: center;
}
.form-wrapper button {
	width: 100%;
	padding: 2rem;
	margin-top: 8rem;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.form-wrapper input {
	padding: 1rem 2rem;
}
footer {
	color: white;
	background: rgba(19, 28, 39, 1);
}
.footer-wrapper {
	display: flex;
	padding: 2rem;
	width: 90%;
	margin: auto;
	align-items: center;
	min-height: 10vh;
	flex-wrap: wrap;
}
footer h5 {
	flex: 1 1 40rem;
	align-items: center;
	justify-content: center;
}
footer ul {
	display: flex;
	list-style: none;
	flex: 1 1 40rem;
	justify-content: space-between;
	align-items: center;
}
/* Media Queries */

@media screen and (max-width: 932px) {
	html {
		font-size: 45%;
	}
	nav {
		text-align: center;
	}
	#logo {
		padding: 2rem;
	}
	.cloud {
		height: 40rem;
		pointer-events: none;
	}
	.locations-head h3 {
		background: rgb(19, 28, 39, .9);
		-webkit-text-fill-color: white;
	}
	footer {
		text-align: center;
	}
	footer h5 {
		padding-bottom: 3rem;
	}
	.form-wrapper {
		width: 100%;
	}
}
