.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: #FBEBCC;
  border-radius: 2px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: 0.3s;
  border-radius: 8px;
  color: #fff;
}

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

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

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

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

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