

  
  /* -----------------------------------------------------------------------------
  
    MAIN OBJECT
    
  ----------------------------------------------------------------------------- */
 
  /* -----------------------------------------------------------------------------
  
    SECTION OBJECT
    
  ----------------------------------------------------------------------------- */
 

  
  /* -----------------------------------------------------------------------------
  
    TABS COMPONENT
    
  ----------------------------------------------------------------------------- */
  /**
   * Tabs component
   *
   * A responsive tabs component that falls back to a linear conent display when
   * JavaScript is disabled. The following is the default suggested markup to play
   * nicely with the JavaScript. If you change it up, just make sure you pass in
   * the correct parameters to the tabs instance.
   *
   * <div id="tabs" class="c-tabs no-js">
   *   <div class="c-tabs-nav">
   *     <a href="#" class="c-tabs-nav__link is-active"></a>
   *     <a href="#" class="c-tabs-nav__link"></a>
   *     ...
   *   </div>
   *   <div class="c-tab is-active">
   *     <div class="c-tab__content"></div>
   *   </div>
   *   <div class="c-tab">
   *     <div class="c-tab__content"></div>
   *   </div>
   *   ...
   * </div>
   */
 
  /**
   * Tabs navigation
   */
  .c-tabs-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .c-tabs-nav__link {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1; 
    width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5rem 5rem;
	cursor: pointer;
	background-color: #F58220;
	color: #ffff;
	font-size: 1.5rem;
	font-weight: 700;
	transition: ease 0.3s;
    text-align: center;
    -webkit-transition: color 0.3s;
            transition: color 0.3s;
  }
  
  .c-tabs-nav__link:last-child {
    margin-right: 0;
  }
   
  .c-tabs-nav__link.is-active {
    background-color: #E9E9E8;
    color: #000000;
    text-decoration: underline;
  }

  .c-tabs-nav__link:hover {
    color: #ffffff;
  }

  .c-tabs-nav__link.is-active:hover {
    color: #000000 !important;
  }
  
  .c-tabs-nav__link i,
  .c-tabs-nav__link span {
    margin: 0;
    padding: 0;
    line-height: 1;
  }
  
  .c-tabs-nav__link i {
    font-size: 18px;
  }
  
  /************Mobile devices********************/
@media only screen and (max-width: 480px) {
    .c-tabs-nav__link span {
        font-size: 15px !important;
        display: inline;
      }

      .c-tabs-nav__link {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 2rem;
        cursor: pointer;
        font-weight: 700;
        transition: ease 0.3s;
        text-align: center;
        -webkit-transition: color 0.3s;
                transition: color 0.3s;
      }
}


  
  @media all and (min-width: 720px) {
    .c-tabs-nav__link i {
      margin-bottom: 12px;
      font-size: 22px;
    }
    .c-tabs-nav__link span {
      display: block;
    }
  }
  
  /**
   * Tab
   */
  .c-tab {
    display: none;
    background-color: #F3EEF1;
  }
  
  .c-tab.is-active {
    display: block;
  }
  
  .c-tab__content {
    padding: 5px !important;
  }
  
  /**
   * Tabs no-js fallback
   */
  .c-tabs.no-js .c-tabs-nav {
    display: none;
  }
  
  .c-tabs.no-js .c-tab {
    display: block;
    margin-bottom: 1.5rem;
  }
  
  .c-tabs.no-js .c-tab:last-child {
    margin-bottom: 0;
  }

  