/* reset */

html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:0.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type="button"],[type="reset"],[type="submit"],button{-webkit-appearance:button}[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}audio,canvas,iframe,img,svg,video{vertical-align:middle}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}.hidden,[hidden]{display:none !important}.sr-only{border:0;clip:rect(0, 0, 0, 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.sr-only.focusable:active,.sr-only.focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;white-space:inherit;width:auto}.invisible{visibility:hidden}.clearfix::after,.clearfix::before{content:" ";display:table}.clearfix::after{clear:both}@media only screen and (min-width: 35em){}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi){}@media print{*,*::after,*::before{background:#fff !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]::after{content:" (" attr(href) ")"}abbr[title]::after{content:" (" attr(title) ")"}a[href^="#"]::after,a[href^="javascript:"]::after{content:""}pre{white-space:pre-wrap !important}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}}

/* base */

*, *:before, *:after {
	box-sizing: border-box;
}

body {
	color: #222;
	font-size: .875rem;
	line-height: 1.8;
	font-family: 'Inter', sans-serif;
	background: #eee;
}

::-moz-selection {
	background: #b3d4fc;
	text-shadow: none;
}
::selection {
	background: #b3d4fc;
	text-shadow: none;
}

/* theme */

h1,
h2, 
h3,
h4,
h5,
h6,
p,
ul,
ol{
	margin-top: 0;
	margin-bottom: 1.5rem;
}
h1{
	color:#397dff;
}
.container{
	padding:1rem;
	width: 100%;
	max-width: 1440px;
	margin:0 auto;
}
.content{
	padding:1rem;
	background:white;
}

ul{
	padding-left: 1.25rem;
	list-style: none;
	padding-left:0;
}
ul li{
	margin-bottom: .5rem;
	position:relative;
	padding-left:1.75rem;
	position:relative;
}
ul li:last-child{
	margin-bottom: 0;
}
ul li:before{
	content:'';
	position:absolute;
	left: 0;
	top:.5rem;
	height:1rem;
	width:1rem;
	display: block;
	background:url('../img/angle-right.svg');
	background-repeat:no-repeat;
	background-size:contain;
	background-position:left center;
}

.img{
	display: block;
	background:url('../img/bg-img.jpg') center center no-repeat;
	background-size: cover;
	width:100%;
	height:35vh;
}
.btn{
	display: inline-flex;
	align-items: center;
	padding:.5rem 1rem;
	background:#397dff;
	color:white;
	border-radius: 3px;
	text-decoration: none;
	transition:background .25s ease;
}
.btn:hover{
	background:#2257bc;
}
.btn svg{
	width:.45rem;
	height: auto;
	display: block;
	margin:0;
	margin-left: 1rem;
}
@media(min-width:1024px){
	body{
		background: none;
	}
	.container{
		margin:0 auto;
		display: flex;
		min-height:100vh;
		align-items:center;
		justify-content: flex-end;
	}
	.content{
		padding:2rem;
		position: relative;
		z-index: 10;
		max-width: 480px;
		box-shadow: 0px 0px 70px 0px rgba(0,0,0,0.25);
	}
	.img{
		position:fixed;
		top: 0;
		left: 0;
		height:100%;
		z-index: 1;
	}
}