/* Fonts */
@font-face {
	font-family: 'Recoleta';
	src: url('Recoleta-Bold.woff2') format('woff2'),
		url('Recoleta-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}


/* Reset */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	outline: none;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
}

body {
	background: none;
}

#stage {
	width: 100%;
	height: 290px;
	background: #f7f7f7;
	position: absolute;
	overflow: hidden;
}

.hiddenOnload {
	opacity: 0;
}

.copy1 {
	position: absolute;
	font-family: 'Recoleta';
	font-size: 38px;
	line-height: 35px;
	color: #000000;
	text-align: center;
	width: 275px;
	left: 26px;
	top: 20px;
}

.copy2 {
	position: absolute;
	font-family: proxima-nova-condensed, sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #000000;
	left: 72px;
	top: 103px;
	width: 190px;
	text-align: center;
}

.selectdiv {
	position: absolute;
	width: 190px;
	height: 35px;
	left: 72px;
	top: 130px;
	z-index: 10
}

#selector {
	width: 100%;
	height: 100%;
	background: #F7F8FA;
	box-shadow: 1px 1px 3px rgba(46, 46, 46, 0.1);
	border: none;
	font-family: proxima-nova-condensed, sans-serif;
	font-weight: 400;
	font-size: 18px;
	padding-left: 7px;
	cursor: pointer;
}

.container {
	position: absolute;
	width: calc(100% - 22px);
	max-width: 578px;
	height: 269px;
	left: 50%;
	transform: translateX(-50%);
	top: 11px;
	overflow: hidden;
	background: #FFFFFF;
	box-shadow: 1px 1px 4px 1px rgba(46, 46, 46, 0.1);
}

.cta:hover {
	background: #7dbdb7;

}

.cta {
	transition: background 100ms ease-out;
	z-index: 10;
	position: absolute;
	width: 206px;
	height: 52px;
	left: 65px;
	top: 177px;

	background: #F97E7B;
	line-height: 52px;
	font-size: 18px;
	font-family: proxima-nova-condensed, sans-serif;
	font-weight: 700;
	color: white;
	text-align: center;
	cursor: pointer;
}

.disclaimer {
	position: absolute;
	width: 273px;
	height: 20px;
	left: 32px;
	top: 237px;
	font-family: proxima-nova-condensed, sans-serif;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	font-weight: 600;
	color: #7dbdb7;
	z-index: 10;
	transition: color 100ms ease-out;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}

.disclaimer:hover {
	color: #F97E7B;
}

.arrow {
	position: relative;
	height: 8px;
	margin-left: 3px;
	fill: #7dbdb7;
}

.disclaimer:hover .arrow {
	fill: #F97E7B;
}


.border {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	pointer-events: none;
}

.image {
	position: absolute;
	width: calc(100% - 336px);
	height: 100%;
	left: 336px;
	top: 0px;
	background-image: url('image.jpeg');
	background-position: center center;
	background-size: cover
}

.clicklayer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
}

.logo {
	position: absolute;
	top: 10px;
	right: 8px;
}

@media (max-width:480px) {
	.border {
		width: 100%;
		height: unset;
		top: -181px;
	}

	.image {
		top: 0;
		left: 0;
		width: 100%;
		height: 176px;
		background-position: center -30px;
	}

	.copy1 {
		font-size: 24px;
		line-height: 1;
		left: 21px;
		top: 183px;
		/* width: 100%; */
		width: calc(100% - 43px);
		height: 50px;
		text-align: left;
		display: flex;
		align-items: center;
	}

	.copy2 {
		left: 21px;
		top: 232px;
		text-align: left;
	}

	#stage {
		height: 420px;
	}

	.container {
		height: 396px;
		max-width: 355px;
	}

	.cta {

		max-width: 314px;
		width: calc(100% - 43px);
		height: 52px;
		left: 21px;
		top: 315px;

	}

	.selectdiv {
		max-width: 314px;
		width: calc(100% - 43px);
		height: 41px;
		left: 21px;
		top: 260px;
	}

	.disclaimer {
		top: 371px;
		left: 21px;
		text-align: left;
		justify-content: flex-start;
		font-size: 12px;
	}
}