/* Style the tab */
.tab {
    overflow: hidden;
    /*border: 1px solid #ccc;
    background-color: #f1f1f1;*/
    /*background-color: rgba(150, 175, 100, 0.36);*/
    background-color: rgba(150, 175, 100, 0.78);
    position: fixed;
    bottom: 60px;
    width: 100%;
    
  }
  
  /* Style the buttons that are used to open the tab content */
  .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-family: 'Forza Light';
    width: 25%;
    border-right: 1px solid;
    font-size: 1.3rem;
    color: white;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: rgba(71, 83, 47, 0.36);
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    background-color: rgba(71, 83, 47, 0.36);
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 6px 12px;
    /*border: 1px solid #ccc;*/
    border-top: none;
  }

  .tabcontent {
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
  }

  .tabcontent h3{
      margin-bottom: 20px;
      /*font-size: 2.3rem;*/
      font-size: 4rem;
      text-align: center;
  }
  
  /* Go from zero to full opacity */
  @keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  @media (max-width: 1280px){
    .tabcontent h3 {
      font-size: 3rem;
    }
  }


  @media (max-width:880px){
    .tab {
      bottom: 52px;
    }
  }