*, *:before, *:after {
	box-sizing: border-box;
	transition: all 0.2s ease;
}


body {
	margin: 0;
	padding-top: 3.75rem;
	font-family: 'Proxima Nova';
	background: #0c1021;
	color: white;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 3.75rem;
	line-height: 3.75rem;
	display: flex;
	justify-content: space-between;
	padding: 0 1rem 0 3rem;
	z-index: 4242;
	background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
}

header .name {
	font-size: 1.3rem;
}

header nav {
	display: flex;
}

header nav a {
	display: block;
	padding: 0 2rem;
	color: inherit;
	text-decoration: none;
	position: relative;
}

header nav a:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 0;
	height: 0.1rem;
	background: white;
}

header nav a:hover:before {
	width: 100%;
}


.home {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 90vh;
	background-image: url(img/cwx-4200.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 75%;
}

.home h1 {
	font-family: 'Montserrat Bold';
	font-weight: normal;
	font-size: 4.5rem;
	margin: 7.5rem 0 1.25rem 0;
}

.home h1 em {
	font-style: normal;
	font-family: 'Montserrat Hairline';
}

.home p {
	font-size: 1.2rem;
}

.button {
	position: relative;
	display: block;
	padding: 0.75rem 2rem;
	border: 2px solid white;
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
	transition-delay: 0.05s;
	font-size: 0.9rem;
	border-radius: 2px;
	overflow: hidden;
	margin: 3rem 0;
	z-index: 42;
}

.button:before {
	content: "";
	transition: opacity 0.2s ease, transform 0.4s ease;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: white;
	opacity: 0;
	transform: scale(0.8, 0.9);
}

.button:hover {
	border: 2px solid transparent;
	color: #222;
}

.button:hover:before {
	opacity: 1;
	transform: scale(1, 1);
}

.about {
	background-image: url(img/planes.png);
	background-size: auto 150%;
	background-position: right center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	transition: none;
}

.about .text {
	transform: skewX(-20deg);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	height: 90vh;
	width: 50%;
	background: #334357;
}

.about .text * {
	transform: skewX(20deg);
}

.about .text:before {
	position: absolute;
	top: 0;
	left: 0;
	transform: skewX(20deg);
	height: 100%;
	width: 50%;
	background: #334357;
	content: "";
}

.about .text p {
	padding-left: 4rem;
	width: 80%;
	line-height: 1.8;
}

.about .text h1 {
	padding-left: 1rem;
	font-size: 3.2rem;
	font-weight: normal;
	font-family: 'Montserrat Bold';
	margin: 1.15rem 0;
}

.contact {
	width: 60%;
	max-width: 50rem;
	margin: auto;
}

.contact h1, .products h1 {
	font-family: 'Montserrat Bold';
	font-size: 5rem;
	margin: 1.75rem 0;
	text-align: center;
}

.contact p, .products > p {
	font-size: 1.2rem;
	text-align: center;
}

form {
	width: 65%;
	margin: 3rem auto;
}

input:not([type="submit"]), textarea {
	background: none;
	color: rgba(255, 255, 255, 0.6);
	padding: 0.5rem;
	margin: 0 0 1.2rem;
	border: none;
	border-bottom: 2px solid;
	font-family: inherit;
	line-height: 1.75;
	outline: none;
	resize: none;
	width: 100%;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
	color: white;
}

label {
	font-size: 0.85rem;
}

button.button {
	margin: 2rem auto;
	display: block;
	background: none;
	color: inherit;
	font-family: inherit;
}

.products .cards-list {
	list-style: none;
	display: flex;
	justify-content: center;
	margin: 0 0 6rem 0;
	padding: 0;
}

.products .cards-list li {
	width: 20rem;
	background: white;
	margin: 0.666rem;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.products .cards-list li h2 {
	position: relative;
	margin: 0;
}

.products .cards-list li h2 span {
	position: absolute;
	bottom: 0.5rem;
	left: 0;
	font-weight: normal;
	color: white;
	display: block;
	padding: 1rem;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
	width: 100%;
}

.products .cards-list li h2 img {
	width: 100%;
}

.products .cards-list li p {
	margin: 1.5rem;
	line-height: 1.35;
	color: #222;
	font-size: 1.1rem;
}

footer {
	font-size: 0.8rem;
	padding: 4rem 0;
	text-align: center;
	background: #222;
	margin-top: 60px;
}

.research h1 {
	font-family: 'Montserrat Bold';
	font-weight: normal;
	font-size: 4.5rem;
	text-align: center;
}

.research > p {
	text-align: center;
	font-size: 1.1rem;
	max-width: 40rem;
	margin: 1rem auto 3rem;
}

.columns {
	display: flex;
}

.column {
	width: 33.3333%;
	min-height: 70vh;
	padding: 4rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.column:nth-child(2) {
	background: rgba(255,255,255,0.05);
}

.column h2 {
	margin-top: 0;
	font-family: 'Montserrat Bold';
	font-size: 1.6rem;
}