
     /* CSS HEX
    --gray-web: #818083;
    --dark-cornflower-blue: #293a6e;
    --cyan-process: #00bcf5;
    --cultured: #f8f8f8;
    --medium-aquamarine: #3ae4ae;

     CSS HSL
    --gray-web: hsla(260, 1%, 51%, 1);
    --dark-cornflower-blue: hsla(225, 46%, 30%, 1);
    --cyan-process: hsla(194, 100%, 48%, 1);
    --cultured: hsla(0, 0%, 97%, 1);
    --medium-aquamarine: hsla(161, 76%, 56%, 1);

     SCSS HEX
    $gray-web: #818083ff;
    $dark-cornflower-blue: #293a6eff;
    $cyan-process: #00bcf5ff;
    $cultured: #f8f8f8;
    $medium-aquamarine: #3ae4aeff;


     SCSS RGB
    $gray-web: rgba(129, 128, 131, 1);
    $dark-cornflower-blue: rgba(41, 58, 110, 1);
    $cyan-process: rgba(0, 188, 245, 1);
    $cultured: rgba(248, 248, 248, 1);
    $medium-aquamarine: rgba(58, 228, 174, 1);
    */
    a {
      text-decoration: none;
    }
    .bg-landing {
        min-height: 100vh;
        background-color: #f8f8f8;
        background-image: url(../../img/background/background_landing.jpg);
        background-position: center;
        background-size:cover;
        position: relative;
        width: 100vw;
    }
    .et-hero-tabs,
    .et-slide {
      /* display: flex; */
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      position: relative;
      background: transparent;
      text-align: center;
      /* padding: 0 2em; */
    }
    .et-hero-tabs h1,
    .et-slide h1 {
      font-size: 2rem;
      margin: 0;
      letter-spacing: 1rem;
    }
    .et-hero-tabs h3,
    .et-slide h3 {
      font-size: 1rem;
      letter-spacing: 0.3rem;
      opacity: 0.6;
    }

    .et-hero-tabs-container {
      display: flex;
      flex-direction: row;
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 70px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
      background: #f8f8f8;
      z-index: 10;
    }
    .et-hero-tabs-container--top {
      position: fixed;
      top: 0;
    }

    .et-hero-tab {
      display: flex;
      justify-content: center;
      align-items: center;
      flex: 1;
      color: #000;
      letter-spacing: 0.1rem;
      transition: all 0.5s ease;
      font-size: 0.8rem;
    }
    .et-hero-tab:hover {
      color: #f8f8f8;
      background: rgba(0, 188, 245, 0.8);
      transition: all 0.5s ease;
    }

    .et-hero-tab-slider {
      position: absolute;
      bottom: 0;
      width: 0;
      height: 6px;
      background: #00bcf5;
      transition: left 0.3s ease;
    }

    @media (min-width: 800px) {
      .et-hero-tabs h1,
    .et-slide h1 {
        font-size: 3rem;
      }
      .et-hero-tabs h3,
    .et-slide h3 {
        font-size: 1rem;
      }

      .et-hero-tab {
        font-size: 1rem;
      }
    }
