#metrics{
    width: 100%;
    height: fit-content;
    background-color: #eeeeee;
    padding: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 80px;
}

#metrics .wrapper{
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
}
#metrics .wrapper h3{
    font-size: 64px;
    font-weight: bold;
}


#metrics .wrapper.animate{
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

#metrics .wrapper.animate.hidden{
    opacity: 0;
    transform: translateY(120px);
    -webkit-transform: translateY(120px);
    -moz-transform: translateY(120px);
    -ms-transform: translateY(120px);
    -o-transform: translateY(120px);
}
#metrics .wrapper:nth-child(1){
    transition-delay: 0.1s;
}
#metrics .wrapper:nth-child(2){
    transition-delay: 0.2s;
}
#metrics .wrapper:nth-child(3){
    transition-delay: 0.3s;
}


@media (max-width: 900px) {
    #metrics{
        flex-direction: column;
        row-gap: 45px;
    }
    #metrics .wrapper{
        align-items: center;
    }
}