*, *::before, *::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	position: relative;
	min-width: 320px;
	overflow-x: hidden !important;
	/* font: normal 400 1.6rem/1.7 "Montserrat", sans-serif; */
	color: #444;
	background-color: #fbfbfb;
	text-rendering: optimizeLegibility;
}
a {
	text-decoration: none;
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	color: #444;
	-webkit-transition: all 0.8s ease-in-out;
	-o-transition: all 0.8s ease-in-out;
	-moz-transition: all 0.8s ease-in-out;
	transition: all 0.8s ease-in-out;
}

/* Modal Popup */
.popup {
	position: fixed;
	top: -200vh;
	left: 0;
	z-index: 101;
	width: 100%;
	height: 200vh;
}
.popup__content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #f2e9e9;
	padding: 2.4rem 0;
	overflow-y: auto;
	z-index: 2;
}
@media only screen and (min-width: 1200px) {
	.popup__content {
		padding: 0;
	}
}
.popupcontent__wrapper {
	position: relative;
	padding: 2.4rem 10%;
}

.popupcontent__wrapper .form input,
.popupcontent__wrapper .form button,
.popupcontent__wrapper .form .inputs-description {
	opacity: 0;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, -webkit-transform 0.3s;
	-o-transition: opacity 0.3s, transform 0.3s;
	-moz-transition: opacity 0.3s, transform 0.3s, -moz-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s;
}
@media only screen and (min-width: 1200px) {
	.popupcontent__wrapper {
		padding: 0;
		width: 100%;
		position: absolute;
		top: 50%;
		bottom: auto;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}
.popup__background {
	position: relative;
	width: 100%;
	height: 100vh;
	background-color: #f2e9e9;
	z-index: 0;
}
.popup__shape {
	position: relative;
	height: 100vh;
	z-index: 1;
}
.popup__shape .popup-transition-shape {
	fill: #f2e9e9;
}
.popup-title {
	position: relative;
	padding: 0 0 3rem 0;
}

/* Popup Waves */        
.popup__background {
	position: relative;
	width: 100%;
	height: 100vh;
	background-color: #f2e9e9;
	z-index: 0;
}  
.popup__shape {
	position: relative;
	height: 100vh;
	z-index: 1;
}
.popup__shape .popup-transition-shape {
	fill: #f2e9e9;
}

/* Buttons */
.popup-close {
	display: block;
	position: relative;
	width: 54px;
	height: 54px;
	z-index: 3;
	margin: 0 auto;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	transition: -webkit-transform 0.3s ease-in-out;
	-o-transition: transform 0.3s ease-in-out;
	-moz-transition: transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
}
.popup-close::before,
.popup-close::after {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	width: 34px;
	height: 5px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #000;
	-webkit-transition: background-color 0.3s ease-in-out;
	-o-transition: background-color 0.3s ease-in-out;
	-moz-transition: background-color 0.3s ease-in-out;
	transition: background-color 0.3s ease-in-out;
}
.popup-close::before {
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.popup-close::after {
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	-moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.popup-close.is-scaled-up {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 0.3s 0.8s;
	transition: -webkit-transform 0.3s 0.8s;
	-o-transition: transform 0.3s 0.8s;
	-moz-transition: transform 0.3s 0.8s, -moz-transform 0.3s 0.8s;
	transition: transform 0.3s 0.8s;
	transition: transform 0.3s 0.8s, -webkit-transform 0.3s 0.8s, -moz-transform 0.3s 0.8s;
}
@media only screen and (min-width: 1200px) {
	.popup-close {
		position: absolute;
		top: 2.4rem;
	right: 8em;
	}
}