.tabsdiv{
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 2rem;
}

.tabsdiv > div{
  flex: 1;
  padding: 0.5rem;
}

.tabs{
  margin: 2rem;
  display: block;
  background: #ededed;
  border-radius: 2px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: 0.3s;
  border-radius: 8px;
}

.tabsactive{
  margin: 2rem;
  display: block;
  background: linear-gradient(90deg, #ff0a00 0%, #ea6566 100%);
  border-radius: 2px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: 0.3s;
  border-radius: 8px;
  color: #fff;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.75);
}

.tabs > p{ 
  margin: 2rem;
  font-weight: bold;
  color: #777;
}

.tabsactive > p{ 
  margin: 2rem;
  font-weight: bold;
  color: #fff;
}

.tabs > i{ 
  font-weight: bold;
  color: #777;
}

.tabsactive > i{ 
  font-weight: bold;
  color: #fff;
}

.tabs:hover, .tabsactive:hover{
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.75);
}

.icontabs{
  margin-top: 2rem;
  text-align: center;
  font-size: 58px;
}