.tabBlock-tabs::after {
  clear: both;
  content: "";
  display: table;
}

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


/*.unstyledList, .tabBlock-tabs {
  list-style: none;
  margin: 0;
  padding: 0;
} */

/* .tabBlock {
  margin: 100px 100px 2.5rem;
} */
.tabBlock-tabs{
  text-align: center;
}
.tabBlock-tab {
  color: #777;
  font-size: 1.125rem;
  line-height: 1.938rem;
  letter-spacing: .5rem;
  cursor: pointer;
  display: inline-block;
  padding: 7px 20px 7px 30px;
  margin: 0 25px;
  position: relative;
  -webkit-transition: all 500ms cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 500ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 500ms cubic-bezier(0.42, 0, 0.58, 1);
}
@media only screen and (max-width: 480px) {
	.tabBlock-tab{margin: 0 10px; padding: 7px 10px 7px 20px;}
}
.tabBlock-tab.is-active {
  position: relative;
  color: #fff;
  background: #da0000;
  z-index: 1;
}

.tabBlock-content {
  /* background-color: #fff;
  border: 2px solid #d8d8d8; */
  padding: 30px;
  margin-top: 20px;
}

@media only screen and (min-width: 1024px) {
  .tabBlock-tab:hover{
    background: #f7f7f7;
  }
  .tabBlock-tab.is-active:hover {
    background: #da0000;
  }
}

@media only screen and (max-width: 768px) {
	.tabBlock-content{padding: 10px;}
}