@charset "utf-8";
/* CSS Document */
h1{
	color:#FFF;
	font-family: 'RocknRoll One', sans-serif;
	display:block;
	text-align:center;
	background:#009FE8;
}
#timeline{
	padding:50px 0;
}
.tab_container {
max-width:960px;
  background-color: #fff;
  border:1px solid #009FE8;
  margin: 0 auto;}

.tab_item {
  width: calc(100%/2);
  padding:10px 0;
  border-bottom: 3px solid #009FE8 ;
  background-color: #ececec;
  text-align: center;
  color: #009FE8 ;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}
input[name="tab_item"] {
  display: none;
}
.tab_content {
  display: none;
  clear: both;
  overflow: hidden;
}
#tab1:checked ~ #tab1_content,
#tab2:checked ~ #tab2_content {
  display: block;
}
.tab_container input:checked + .tab_item {
  background-color: #009FE8 ;
  color: #fff;
}
@media (min-width: 1024px){
	h1{
		padding:10px 0;
		font-size:40px;
	}
}
@media (min-width: 480px) and (max-width: 1023px){
	h1{
		padding:5px 0;
		font-size:30px;
	}
}
@media (max-width: 479px){
	h1{
		padding:5px 0;
		font-size:25px;
	}
}