/***** VARIABLE *****/

:root {
    --font-color: #0E0E0E;
    --background-color: #F5F5F5;
    --card-color: #EBEBEB;
    --font-color-w-20: #f5f5f530;
    --font-color-w-10: #f5f5f520;
    --font-color-w-60: #f5f5f570;
    --font-color-b-20: #0E0E0E30;
    --font-color-b-10: #0e0e0e20;
    --font-color-b-60: #0e0e0e70;
}


/***** HEADER *****/

.header-about-container {
    width: 100%;
    height: 100%;
    padding: 2vw 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

.section-about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12vw 10vw 9vw 10vw;
    gap: 5vw;
}

.section-about-title {
    width: 41vw;
}

.background-about-mobile {
    display: none;
}

@media screen and (max-width:480px) {

    .header-about-container {
        padding: 2.5em;
        justify-content: end;
    }

    .background-about-mobile {
        display: block;
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .section-about {
        display: flex;
        justify-content: normal;
        align-items: normal;
        flex-direction: column;
        padding: 2.5em;
        gap: 3em;
    }

    .section-about-title {
        width: 100%;
    }

}