
    /* CSS HEX

    --mint-cream: #e6efec;
    --yellow-green: #aada2f;
    --carrot-orange: #f39200;
    --star-command-blue: #1480c4;
    --gunmetal: #192c38;

    CSS HSL
    --mint-cream: hsla(160, 22%, 92%, 1);
    --yellow-green: hsla(77, 70%, 52%, 1);
    --carrot-orange: hsla(36, 100%, 48%, 1);
    --star-command-blue: hsla(203, 81%, 42%, 1);
    --gunmetal: hsla(203, 38%, 16%, 1);

    SCSS RGB
    $mint-cream: rgba(230, 239, 236, 1);
    $yellow-green: rgba(170, 218, 47, 1);
    $carrot-orange: rgba(243, 146, 0, 1);
    $star-command-blue: rgba(20, 128, 196, 1);
    $gunmetal: rgba(25, 44, 56, 1);
    */

    .brand {
        margin-top: 10rem;
        padding-bottom:10rem;
    }
    .brand .container_intro {
        position: relative;
    }
    .brand .content_intro{
    }
    .brand .titolo {
        margin-bottom: 3rem;
        color: #e6efec;
        text-align: center;
    }
    .brand .titolo h1{
        font-size: 70px;
        font-weight: bold;
        margin-bottom: 1.5rem;
    }
    .brand .titolo h1:before {
        position: absolute;
        content:  "BRAND";
        font-size: 70px;
        font-weight: bold;
        color: #192c38;
        transform: translate(4px,-2px);
    }
    .brand .titolo span {
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        line-height: 5px;
    }
    .brand .description {
        margin-top: 3rem;
        margin-bottom: 3rem;
        text-align: center;
    }
    .brand .body {
        min-height: 80vh;
        width: 90%;
        /* background-color: white; */
        margin: auto;
    }

    *, *:before, *:after {
      box-sizing: border-box;
      outline: none;
    }

    /* html {
      font-family: "Source Sans Pro", sans-serif;
      font-size: 16px;
      font-smooth: auto;
      font-weight: 300;
      line-height: 1.5;
      color: #444;
    } */

    .brand .body {
      position: relative;
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      width: 90%;
      height: 80vh;
      /* background: linear-gradient(45deg, #d8ffde 10%, #d3e3ff 90%); */
      transition: all 0.5s linear;
      overflow: hidden;
      z-index: 0;
    }
    /* .brand .body:before {
      position: absolute;
      content: "";
      top: -5%;
      left: -5%;
      width: 60vw;
      height: 120vh;
      background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 20px);
      transform: rotate(45deg);
      z-index: 0;
    } */

    .brand .body a {
      cursor: pointer;
      text-decoration: none;
    }
    .brand .body .brand .body nav {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: center;
      width: auto;
      height: 100vh;
      padding: 0 20px;
      z-index: 99;

    }

    .brand .body .button {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: flex-end;
      width: 100%;
      height: 25vh;
      margin: 0;
      padding: 20px;
      background: transparent;
      border-bottom: 1px solid rgba(102, 102, 102, 0);
    }
    .brand .body .button:last-child {
      border-bottom: none;
    }
    .brand .body .button:hover h3, .brand .body .button:hover span {
      color: white;
      transition: 0.25s linear;
      opacity: 1;
    }
    .brand .body .button h3 {
      margin: 0;
      padding: 0;
      color: #192c38;
      font-weight: 700;
      line-height: 1;
      opacity: 0.5;
    }
    .brand .body .button span {
      color: #192c38;
      font-size: 18px;
      font-weight: 300;
      opacity: 0.5;
    }

    .brand .body .panel {
      position: absolute;
      display: none;
      bottom: 0vh;
      left: 10vw;
      transition: bottom 0.25s ease;
    }
    .brand .body .panel.show {
      display: block;
      bottom: 10vh;
      animation: moveUp 0.5s ease;
    }
    .brand .body .panel h2 {
      margin: 0;
      padding: 0;
      color: white;
      font-size: 10vw;
      font-weight: 700;
      line-height: 1;
    }
    .brand .body .panel p {
      margin: 0;
      padding: 0;
      color: white;
      font-size: 22px;
      line-height: 1;
    }

    @keyframes moveUp {
      0% {
        bottom: 0vh;
      }
      100% {
        bottom: 10vh;
      }
    }





    @media (max-width: 576px) {
        .brand .body {
            width:100%;
        }
        .brand .content_intro .description {
            margin-left: auto;
            margin-right: auto;
        }
        .brand .body .panel {
            left:-35vw;
            transform: rotateZ(270deg);
        }
        .brand .body .panel h2 {
            font-size: 25vw;
            color:rgba(230, 239, 236, 0.3);
        }
        .brand .body .panel.show {
            bottom: 25vh;
        }
     }


    @media (max-width: 768px) {
        .brand .body {
            width:100%;
        }
        .brand .content_intro .description {
            margin-left: auto;
            margin-right: auto;
        }
        .brand .body .panel {
            left:-35vw;
            transform: rotateZ(270deg);
        }
        .brand .body .panel h2 {
            font-size: 15vw;
            color:rgba(230, 239, 236, 0.3);
        }
        .brand .body .panel.show {
            bottom: 40vh;
        }
     }
