.about{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background-color: #0f172a;
    padding: 2rem 5%;
}

.about-image{
    width: 100%;
    height: 100%;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

}

.about-image:hover img{
    transform: scale(1.05);
}

.about-image img{
    width: 100%;
    max-width: 35rem;
    height: 100%;
    max-height: 25rem;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.3s ease-in-out;

}

.about-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    color: rgba(245, 245, 245,0.7);
}

.about-info > div:first-child{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.about-info h2{
    font-size: 2rem;
    text-align: center;
    color:whitesmoke;
    align-self: flex-start;
}

.about-info p{
    text-align: justify;
    line-height: 1.5;
    text-align: justify;
}

.about-statistics{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.about-statistics div:first-child span{
    color: rgb(59, 130, 246);
    font-size: 2rem;
    filter: brightness(120%);
}

.about-statistics div:last-child span{
    color: rgb(34, 197, 94);
    font-size: 2rem;
    filter: brightness(120%);
}

@media(min-width:768px){
    .about-info{
        max-width: 35rem;  
    }


    .about-statistics{
        flex-direction: row;
        gap: 10rem;
    }

}

@media(min-width: 1024px){

    .about{
        flex-direction: row;
    }

}