/*--------------------------
* Menu Tabular solo Con CSS
*---------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  *, 
  *:before, 
  *:after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
  }
  
  body {
    background: radial-gradient(circle at 24.1% 68.8%, rgb(50, 50, 50) 0%, rgb(0, 0, 0) 99.4%);
    font-size: 80%;
    font-family: 'Montserrat', sans-serif;
  }
  a {
    color: #31a687;
    font-weight: bold;
    text-decoration: none;
  }
  h1 {
    color: #FFF;
    font-size: 3.2em;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  }
  /*--------------------------
  * MENU TABS
  ---------------------------*/
  .menu__tabs {
    list-style: none;
    overflow: hidden;
  }
  .menu__tabs li {
    float: left;
    margin-right: 2px;
    font-size: 1.3em;
  }
  .menu__tabs a {
    padding: 1em;
    background: #333b48;
    display: inline-block;
    color: #FFF;
    text-decoration: none;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: inset 0 -2px 5px rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0 -2px 5px rgba(0,0,0,0.2);
    box-shadow: inset 0 -2px 5px rgba(0,0,0,0.2);
  }
  .menu__tabs a:hover {
    background: #515a68;
  }
  .menu__tabs a.active {
    color: #333b48;
    background: #FFF;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .menu__tabs a.active i {color: #80cbb7;}
  .menu__tabs a i {
    margin-right: 3px;
    color: #aaaaaa;
  }
  
  /*--------------------------
  * MENU WRAPPER
  ---------------------------*/
  .menu {
    margin: 55px auto;
    width: 80%;
    max-width: 1400px;
    position: relative;
  }
  .menu__wrapper {
    padding: 2em;
    position: relative;
    z-index: 400;
    background: #FFF;
    min-height: 300px;
    -webkit-border-radius: 0 4px 4px 4px;
    -moz-border-radius: 0 4px 4px 4px;
    border-radius: 0 4px 4px 4px;
  }
  .menu--shadow {
    position: absolute;
    z-index: 300;
    bottom: -5px;
    height: 25px;
    width: 100%;
  }
  .menu--shadow:after,
  .menu--shadow:before {
    content: '';
    display: block;
    width: 50%;
    height: 25px;
    position: absolute;
    left: 0;
    background: rgba(0,0,0,0.2);
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    -webkit-box-shadow: 0 0 15px 5px rgba(0,0,0,0.25);
    -moz-box-shadow: 0 0 15px 5px rgba(0,0,0,0.25);
    box-shadow: 0 0 15px 5px rgba(0,0,0,0.25);
    -webkit-transform: scale(0.8) rotate(-4deg);
    -ms-transform: scale(0.8) rotate(-4deg);
    -o-transform: scale(0.8) rotate(-4deg);
    transform: scale(0.8) rotate(-4deg);
  }
  .menu--shadow:after {
    right: 0;
    left: auto;
    -webkit-transform: scale(0.8) rotate(4deg);
    -ms-transform: scale(0.8) rotate(4deg);
    -o-transform: scale(0.8) rotate(4deg);
    transform: scale(0.8) rotate(4deg);
  }
  .menu__wrapper .menu__item {
    line-height: 1.3;
    color: #76716f;
    display: none;
  }
  .button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 60px;
    justify-content: center;
  }
  .menu__wrapper .menu__item.item-active {
    display: block;
  }
  .menu__wrapper .menu__item h3 {
    font-size: 1.8em;
    color: #333b48;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 5px;
    margin-bottom: 12px;
  }
  .menu__wrapper .menu__item p {
    font-size: 1.3em;
    line-height: 1.6em;
    color: #76716f;
  }