@import url('https://fonts.googleapis.com/css?family=Hind:300,400');

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

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.container {
  margin: 0 auto;
  padding: 4rem;
  width: 90rem;
  height: auto;
}

h3 {
	font-size: 14px;
	color: #000066;
	padding: 1.3rem;
	margin: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
}

.accordion a {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	padding: 1rem 3rem 1rem 1rem;
	color: #126ead;
	font-size: 1.15rem;
	font-weight: 400;
	border-bottom: 1px solid #e5e5e5;
	font-family: Verdana, Geneva, sans-serif;
}

.accordion a:hover,
.accordion a:hover::after {
	cursor: pointer;
	color: #ec6708;

	
}

.accordion a:hover::after {
  border: 1px solid #03b5d2;
}

.accordion a.active {
	color: #126ead;
	border-bottom: 1px solid #03b5d2;
}

.accordion a::after {
	font-family: Ionicons;
	content: '\f218';
	position: absolute;
	float: right;
	right: 1rem;
	font-size: 1rem;
	color: #126ead;
	padding: 5px;
	width: 30px;
	height: 30px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border: 1px solid #7288a2;
	text-align: center;
	font-weight: bold;
}

.accordion a.active::after {
	font-family: Ionicons;
	content: '\f209';
	color: #126ead;
	border: 1px solid #03b5d2;
	font-weight: bold;
}

.accordion .content {
  opacity: 0;
  padding: 0 1rem;
  max-height: 0;
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden;
  clear: both;
  -webkit-transition: all 0.2s ease 0.15s;
  -o-transition: all 0.2s ease 0.15s;
  transition: all 0.2s ease 0.15s;
}

.accordion .content p {
	font-size: 1rem;
	font-weight: 300;
	color: #333333;
}

.accordion .content.active {
  opacity: 1;
  padding: 1rem;
  max-height: 100%;
  -webkit-transition: all 0.35s ease 0.15s;
  -o-transition: all 0.35s ease 0.15s;
  transition: all 0.35s ease 0.15s;
}

@media only screen and (max-width: 800px){
.container {
  margin: 0 auto;
  padding: 4rem;
  width: 50rem;
  height: auto;
}
}

@media only screen and (max-width: 684px){
.container {
  margin: 0 auto;
  padding: 3rem;
  width: 40rem;
  height: auto;
}
}
@media only screen and (max-width: 480px){
.container {
  margin: 0 auto;
  padding: 2rem;
  width: 25rem;
  height: auto;
}
}
@media only screen and (max-width: 360px){
.container {
  margin: 0 auto;
  padding: 2rem;
  width: 20rem;
  height: auto;
}
}