@import url('https://fonts.googleapis.com/css?family=Hind:300,400');

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

br{
	padding: 1rem;
}

strong{
	color: red;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Hind', sans-serif;
	background: #fff;
	color: black;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	min-height: 100vh;
}

.container {
	margin: 0 auto;
	padding: 4rem;
	width: 60rem;
}

h2 {
	font-size: 1.8rem;
	color: #373d51;
	padding: 1.3rem;
	margin: 0;
}

.accordion h3 {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	width: 100%;
	padding: 1rem 3rem 1rem 1rem;
	color: #7288a2;
	font-size: 1.15rem;
	font-weight: 400;
	border-bottom: 1px solid #e5e5e5;
}

.accordion h3:hover,
.accordion h3:hover::after {
	cursor: pointer;
	color: #03b5d2;
}

.accordion h3:hover::after {
	border: 1px solid #03b5d2;
}

.accordion h3.active {
	color: #03b5d2;
	border-bottom: 1px solid #03b5d2;
}

.accordion h3::after {
	font-family: 'Ionicons';
	content: '\f218';
	position: absolute;
	float: right;
	right: 1rem;
	font-size: 1rem;
	color: #7288a2;
	padding: 5px;
	width: 30px;
	height: 30px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border: 1px solid #7288a2;
	text-align: center;
}

.accordion h3.active::after {
	font-family: 'Ionicons';
	content: '\f209';
	color: #03b5d2;
	border: 1px solid #03b5d2;
}

.content {
	display: none;
	padding: 1rem;
	border-bottom: 1px solid #e5e5e5;
	overflow: hidden;
}

.content p {
	font-size: 1rem;
	font-weight: 300;
}
