.group::after, .tabBlock-tabs::after { clear: both;  content: "";  display: table;}
*, ::before, ::after { box-sizing: border-box;}

.unstyledList, .tabBlock-tabs { list-style: none;  margin: 0 auto; padding-top:100px;  padding-left: 0px;}
.tabBlock { margin: 0 auto; width:100%; height:auto;}
.tabBlock ul { margin: 0 auto; width:1200px;}
.tabBlock-tab {
  background-color: #fff;
  border-color: #d8d8d8;
  border-left-style: solid;
  border-top: solid;
  border-width: 1px;
  color: #333;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  float: left;
  width:25%;
  height:65px;
  line-height:65px;
  text-align:center;
  font-size:22px;
  font-weight:300;
  padding: 0;
  position: relative;
  transition: 0.1s ease-in-out;
}
.tabBlock-tab:last-of-type {  border-right-style: solid;}
.tabBlock-tab::before, .tabBlock-tab::after { content: "";  display: block;  height: 4px;  position: absolute;  transition: 0.1s ease-in-out;}
.tabBlock-tab::before {  background-color: #d8d8d8;  left: -1px;  right: -1px;  top: -1px;}
.tabBlock-tab::after { background-color: transparent;  bottom: -1px;  left: 0;  right: 0;}

.tabBlock-tab.is-active { position: relative;  color: #000; font-weight:500; z-index: 1;}
.tabBlock-tab.is-active::before { background-color: #ff3600; }
.tabBlock-tab.is-active::after { background-color: white;}
.tabBlock-content { background-color: white;  border-top:1px solid #d8d8d8;  padding-top: 80px; width:100%; height:auto; display:block; margin: 0 auto; }
.tabBlock-pane > :last-child { margin-bottom: 30px; }
