.hero{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;

    overflow: hidden;
}

.hero_inner{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column
}

.hero_content{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: auto;
}

.hero_content > picture{
    width: 60%;
    height: auto;
}

.hero_content > picture > img{
    width: 100%;
    height: auto;
}

.hero_content > h1{
    font-family: var(--inter);
    margin: 0;
    padding: 0;
    font-size: 3.1vw;
    font-weight: 500;
    color: white;
    margin-top: 1vw;
    margin-bottom: 1vw;
    text-align: center;
}

.hero_content > p{
    font-family: var(--inter);
    margin: 0;
    padding: 0;
    font-size: 1vw;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    width: 40%;
    text-align: center;
    margin-bottom: 2vw;
}

.hero_content > button{
    width: fit-content;
    height: fit-content;
    padding: 1vw 1.6vw;
    border: none;
    border-radius: 100px;
    border: 1px solid white;
    background-color: transparent;
    color: white;
    font-family: var(--inter);
    font-size: 1vw;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.hero_content > button:hover{
    background-color: white;
    color: black;
}

.hero_metrics{
    width: 55%;
    height: fit-content;
    margin-bottom: 1vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5vw;
    flex-wrap: wrap;
}

.hero_metrics > .metric{
    width: calc(25% - 1vw);
    aspect-ratio: 1.2/1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;

    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 0.4vw;
    transition: 0.2s ease-out;
    cursor: default
}

.hero_metrics > .metric:hover{
    background-color: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero_metrics > .metric:hover > h1{
    transform: translateY(-20%);
}

.hero_metrics > .metric > h1{
    font-family: var(--inter);
    margin: 0;
    padding: 0;
    font-size: 1.6vw;
    font-weight: 500;
    transition: 0.2s ease-out;
}

.hero_metrics > .metric > p{
    font-family: var(--inter);
    margin: 0;
    padding: 0;
    font-size: 0.9vw;
    font-weight: 300;
    margin-top: 0.5vw;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1366px) {
    /* Add styles for screens up to 1366px */

}

@media (max-width: 940px) {
    /* Add styles for screens up to 900px */    
    .hero_content > picture{
        width: 65%;
    }

    .hero_content > h1{
        width: 80%;
        font-size: 4vw;
        margin-top: 4vw;
        margin-bottom: 1vw;
    }

    .hero_content > p{
        font-size: 1.8vw;
        width: 50%;
        margin-bottom: 4vw;
    }

    .hero_content > button{
        padding: 2.4vw 3vw;
        font-size: 2vw;
    }


    .hero_metrics{
        width: 80%;
        margin-bottom: 2vw;
        gap: 0.7vw;
    }

    .hero_metrics > .metric > h1{
        font-size: 2.8vw;
    }

    .hero_metrics > .metric > p{
        font-size: 1.6vw;
        margin-top: 0.7vw;
    }

}

@media (max-width: 480px) {
    /* Add styles for screens up to 480px */


    .hero_content > picture{
        width: 70%;
    }

    .hero_content > h1{
        width: 80%;
        font-size: 6.2vw;
        margin-top: 8vw;
        margin-bottom: 2vw;
    }

    .hero_content > p{
        font-size: 2.8vw;
        width: 65%;
        margin-bottom: 8vw;
    }

    .hero_content > button{
        padding: 4vw 4.8vw;
        font-size: 3vw;
    }


    .hero_metrics{
        width: 60%;
        margin-bottom: 2vw;
        gap: 1vw;
    }

    .hero_metrics > .metric{
        width: calc(50% - 1.2vw);
        aspect-ratio: 1.4/1;
        border-radius: 0.8vw;
    }

    .hero_metrics > .metric > h1{
        font-size: 4vw;
    }

    .hero_metrics > .metric > p{
        font-size: 2.2vw;
        margin-top: 1vw;
    }

}