/* --- 1.0 Reset --- */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	-webkit-font-smoothing: antialiased;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow-x: hidden;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

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

article, aside, details, figcaption, figure, footer, header, main, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: separate;
	border-spacing: 0;
}

caption, th, td {
	font-weight: normal;
	text-align: left;
}

fieldset {
	min-width: inherit;
}

blockquote, q {
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: "";
}

a {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

a:focus, a:hover, a:active {
	outline: 0;
}

a img {
	border: 0;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	width: 100%;
}

:first-child {
	margin-top: 0;
}

:last-child {
	margin-bottom: 0;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

/* --- 1.1 Clearing --- */

.clearfix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
	width: 0;
	height: 0;
}

/*-----------------------------------------------------------------------------------*/
/*	2.0 Layout
/*-----------------------------------------------------------------------------------*/

html {
	position: relative;
	min-height: 100%;
}

body {
	height: auto;
	min-height: 100%;
	color: #2B2A35;
	font-size: 1rem;
	font-family: 'Rubik', sans-serif;
	font-weight: 400;
	line-height: 1.5;
	background-color: #FAFAFB;
	padding-bottom: 82px;
}

h1 {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 2.5rem;
}

h2 {
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

@media only screen and (min-width: 1540px) {
	h1 {
		font-size: 5rem;
	}
}

.button {
	font-size: 1rem;
	line-height: 1rem;
	padding: 1rem 2rem;
	border-radius: 5px;
	display: inline-block;
	position: relative;
	font-weight: bold;
	transition: background 0.4s ease-in-out 0s;
}

.button-primary {
	background-color: #293583;
	color: white;
}

.button-primary:hover {
	background-color: #981D80;
}

.site-header {
	padding-top: 2rem;
	padding-bottom: 2rem;
	background: #293583;
	background: linear-gradient(55deg, #293583 45%, #981d80 100%);
}

@media only screen and (min-width: 768px) {
	.site-header {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
}

@media only screen and (min-width: 1540px) {
	.site-header {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
}

.site-branding {
	width: 310px;
	height: 57px;
	background-image: url(../img/logo.svg);
	text-indent: -99999rem;
}

.site-branding a {
	display: block;
}

.site-footer {
	padding: 2rem 0;
	color: #fff;
	text-align: center;
	background: #293583;
	background: linear-gradient(55deg, #293583 45%, #981d80 100%);
	font-size: 0.75rem;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.entry-header {
	margin-bottom: 2rem;
}

@media only screen and (min-width: 768px) {
	.entry-header {
		margin-bottom: 3rem;
	}
}

.entry-content {
	font-size: 1.125rem;
	padding: 2rem 0;
}

.entry-content ul {
	background: white;
	border: 1px solid #EFEFEF;
	border-radius: 5px;
	box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
}

.entry-content ul li {
	position: relative;
}

.entry-content ul li:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 2rem;
	width: calc(100% - 4rem);
	border-bottom: 1px solid #EFEFEF;
}

.entry-content ul li:last-child:after {
	border: 0;
}

.entry-content ul li a {
	padding: 2rem;
	display: block;
	transition: background 0.4s ease-in-out 0s;
}

.entry-content ul li a:hover {
	background-color: #EFEFEF;
}


.entry-footer {
	background: white;
	padding: 2rem 0;
	text-align: center;
}

p {
	margin-bottom: 2rem;
}

@media only screen and (min-width: 768px) {
	p {
		margin-bottom: 3rem;
	}
}

.wrapper {
	margin: 0 auto;
}

.wrapper {
	padding: 0 2rem;
}

@media only screen and (min-width: 768px) {
	.wrapper {
		padding: 0 4rem;
		max-width: 1920px;
	}
}

@media only screen and (min-width: 1024px) {
	.wrapper {
		padding: 0 8rem;
	}
}


@media only screen and (min-width: 1540px) {
	.wrapper {
		padding: 0 16rem;
	}
}

.buttons {
	position: relative;
	height: 60px;
	overflow: hidden;
	width: 271px; 
}

.buttons:before {
	content: "";
	width: 36px;
	height: 28px;
	background-image: url(../img/icon-email.svg);
	background-size: 100%;
	position: absolute;
	top: 1rem;
	left: 2rem;
	z-index: 2;
	pointer-events: none;
}