#start-experience {
    display: block;
}

.icones {
    display: flex;
    cursor: pointer;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0 5%;
}

.icones_container{
    display:inline-block;
    margin-top: 60px;
    width: 50px;
}

.line {
    position: relative;
    top: 50%;
    width: 10em;
    border-right: 5px solid #000;
    font-size: 50px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden; transform: translateY(-50%);
}

.anim-typewriter {
    animation: typewriter 6s steps(50) 1s normal both,
    blinkTextCursor 500ms steps(100);
    animation-iteration-count: infinite;
}


    @keyframes typewriter {
        from {
            width: 0;
        }
        to {
            width: 42em;
        }
    }
    
    @keyframes blinkTextCursor {
        from {
            border-right-color: transparent;
        }
        to {
            border-right-color: transparent;
        }
    }


    #typewriter{
        display: block;
        font-family: "Helvetica-light";
        font-size: 25px;
        min-height: 166px;
        margin-top: 50px;
        margin-left: 60px;
        color: white;
        
    }

    #typewriter:hover {
        cursor: pointer;
    }

    #typewriter span {
        display: block;
        margin-top: 13px;
        white-space: nowrap;
        max-width: 990px;
        overflow: hidden;
    }


    #typewriter:hover + .text-icons q5 {
        opacity: 1;
        z-index: 2;
        transform: translateY(20px);
    }

    #typewriter:hover ~ .text-icons .icones {
        opacity: 0;
        z-index: 0;
        transform: translateY(30px);
    }

    .text-icons .icones {
        transform: translateY(20px);
        z-index: 2;
        transition: 0.5s all;
    }


    .text-icons q5 {
        position: absolute;
        z-index: 0;
        color: #fff;
        opacity: 0;
        transform: translateY(30px);
        transition: 0.5s all;
        max-width: 990px;
    }

    @-webkit-keyframes blink{
      0%{opacity: 0;}
      100%{opacity: 1;}
    }

    @-moz-keyframes blink{
      0%{opacity: 0;}
      100%{opacity: 1;}
    }

    @keyframes blink{
      0%{opacity: 0;}
      100%{opacity: 1;}
    }