@charset "UTF-8";
/* CSS Document */
html, body {
	margin: 0;
	padding: 0;
	font-family: Roboto, Arial, "sans-serif";
	font-smooth: always;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
  	font-smoothing: antialiased;
	background-color: #cb1d38;
}

h1 {
	text-align: center;
}

h2 {
	text-align: center;
	margin-bottom: 0px;
	line-height: 110%;
}

.page-wrapper {
	width: 100%;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
	background-color: white;
}




.hero {
	display: flex;
	width: 100%;
	align-items: flex-start;
	justify-content: center;
	background-color: #cb1d38;
}

.hero img {
	width: 100%;
	height: auto;
	max-width: 800px;
}

.content-row {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: row;
	gap: 40px;
	width: 100%;
}

@media (max-width: 560px) {
	.content-row {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	gap: 0px;
	width: 100%;
}
}

.column-left {
	display: flex;
	width: 500px;
	gap: 16px;
	justify-content: center;
}

.column-right {
	padding: 60px 0 0 0;
	width: 300px;
	gap: 16px;
}

@media (max-width: 767px) {
.column-right {
	padding: 20px 0 0 0;
}
}

@media (max-width: 560px) {
	.column-left, .column-right {
	width: 100%;
	gap: 16px;
}
}

.column-left img{
	width: 100%;
	height: auto;
}

@media (min-width: 360px) and (max-width: 560px) {
.column-left img{
	width: 80%;
	height: auto;
}
}

.button-wrap {
	display: flex;
	width: 100%;
	padding: 10px 24px 24px;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
	border-radius: 8px;
	background: #EEF3F8;
	box-sizing: border-box;
	margin: 0 0 56px 0;
	text-align: center;
}


.button-wrap a{
	text-decoration: none;
	color: inherit;
	width: 100%;
}

.button-wrap a:hover{
}

@media (max-width: 560px) {
.button-wrap {
	padding: 10px 24px;
	margin: 0;

}
}


.preview{
	text-align: center;
	margin-bottom: 0px;
	width: 100%;
}

.intro {
	margin-bottom: 10px;
	margin-top: 0px;
}

.disclaimer {
	font-size: 12px;
	text-align: left;
	margin-top: 30px;
	padding: 0 20px;
	box-sizing: content-box;
}

.disclaimer a{
text-decoration: underline;
}

.button {
	width: 100%;
	padding: 16px 0px;
	box-sizing: content-box;
	border-radius: 56px;
	border: 1px solid #a0d553;
	background: #a0d553;
	color: #202020;
	font-family: Roboto;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	text-align: center;
}

.button:hover {
	background: #C5E597;
	color: black;
}

.blue {
	background-color: #64bbd7;
	border-color: #64bbd7;
}

.blue:hover {
	background-color: #95D0E3;
}

.rose {
	background-color: #FFB1C0;
	border-color: #FFB1C0;
}

.rose:hover {
	background-color: #FFD2DB;
}

.footer {
	display: flex;
	width: 100%;
	height: 100px;
	align-items: center;
	justify-content: center;
	background-color: #cb1d38;
	color: white;
}