*,
*::after,
*::before {
	box-sizing: border-box;
}

html, body {
	width: 100%;
	overflow-x: hidden;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h2, .menu__link {
	font-family: 'Poppins', sans-serif;
}

a {
	text-decoration: none;
	color: #000;
	outline: none;
}

a:hover,
a:focus {
	color: #2d2d30;
}


/* Content */
.content {
	position: relative;
	min-height: 300px;
	overflow-x: hidden;
}


.flexy {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
}

.flexy--center {
    justify-content: center;
}

.content__title {
	font-size: 30px;
	line-height: 1.2;
	padding: 0 5vw;
    font-weight:100;
}


/* Buttons */
.btn {
	border: 0;
	padding: 0;
	margin: 0;
	background: none;
	color: inherit;
}

.btn:focus {
	outline: none;
}

.btn--default {
	font-weight: bold;
	border: 2px solid;
	text-align: center;
	text-indent: 0;
	display: inline-block;
	line-height: 1.7;
}

.btn--default {
    padding: 6px 35px 6px 30px;
}


.form {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2000;
}

.js .form {
	pointer-events: none;
}

.js .form--open {
	pointer-events: visible;
}

.form__inner {
    position: absolute;
    width: 100%;
    height: 100%;
    min-height: 400px;
    top: 0;
    left: 0;
    padding: 5vw;
    
}

.form__section {
	font-size: 1.25em;
	text-align: left;
	padding: 0.1em 0;
	width: 80%;
	max-width: 380px;
	margin: 0 auto;
}

.form__section--title {
	font-size: 2.35vw;
	padding: 0 0 1em;
	line-height: 1.1;
	max-width: 380px;
	margin: 0 auto;
}

.js .form__section {
	transform: translate3d(0,100px,0);
	opacity: 0;
	transition: transform 0s 0.6s, opacity 0s 0.6s;
}

.form--open .form__section {
	opacity: 1;
	transform: translate3d(0,0,0);
	transition: transform 1s 0.3s, opacity 1s 0.3s;
	transition-timing-function: cubic-bezier(0.2,1,0.2,1);
}

.form--open .form__section:nth-child(2) {
	transition-delay: 0.35s;
}

.form--open .form__section:nth-child(3) {
	transition-delay: 0.40s;
}

.form--open .form__section:nth-child(4) {
	transition-delay: 0.45s;
}

.form--open .form__section:nth-child(5) {
	transition-delay: 0.50s;
}

.form--open .form__section:nth-child(6) {
	transition-delay: 0.55s;
}

.form__label {
	display: block;
	flex: none;
	width: 100%;
	padding: 0.25em 0;
}

.form__input {
    padding: 1px;
    font-size: 15px;
}

.form__input,
.form__select {
    width: 100%;
    padding: 10px 0 10px 10px;
    border: 2px solid;
    font-weight: 500;
    background: transparent;
}

.form__input:focus,
.form__select:focus {
	outline: none;
}

.form__section--right {
	text-align: right;
    margin-top:10px;
}

@media screen and (max-width: 50em) {
	
	
	.content__title {
		font-size: 2em;
	}
	
	.content__title--small {
		font-size: 1.15em;
	}
	
	
	.form__title,
	.form__section--title {
		font-size: 30px;
	}
}

