@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');


*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', Arial, Helvetica, sans-serif;
}

#container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    height: 70vh;
}

#col-basic-info {
    background: rgb(45, 59, 80);
    background: linear-gradient(90deg, rgba(45, 59, 80, 1) 0%, rgba(0, 40, 73, 1) 100%);
    padding: 1.5rem;
    color: white;
    height: 100vh;
    width: 260px;
    flex-shrink: 0;
    overflow-y: scroll;
    scrollbar-width: thin;
    /* "auto" or "thin" */
    scrollbar-color: white rgba(0, 40, 73, 1);
    /* scroll thumb and track */
}

#col-cv {
    background-color: secondary;
    padding: 2rem;
    overflow-y: scroll;
    scrollbar-width: thin;
    /* "auto" or "thin" */
    scrollbar-color: grey #f8f9fa;
    /* scroll thumb and track */
    height: 100vh;
    flex-grow: 1;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 15rem;
    margin-right: 15rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 2px solid rgba(53, 66, 82, 1);
    border-bottom: 2px solid rgba(53, 66, 82, 1);
}


#img-ju-mobile {
    display: none;
}

@media screen and (max-width: 1080px) {
    header {
        margin-left: 2rem;
        margin-right: 2rem;
        flex-direction: column;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    #container {
        display: flex;
        flex-direction: column-reverse;
        height: auto;
    }

    #col-basic-info {
        padding: 1.5rem;
        height: auto;
        width: auto;
    }

    #col-cv {
        height: auto;
    }

    #img-ju-mobile {
        height: 100px;
        width: 100px;
        border-radius: 50%;
        top: 30px;
        align-self: center;
        border: 2px solid #dda15e;
        display: flex;
    }

    #img-ju {
        display: none;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

#img-ju {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    /* border-top-right-radius: 25%;
    border-bottom-left-radius: 25%;
    border-bottom-right-radius: 25%;
    border-top-left-radius: 25%; */
    top: 30px;
    align-self: center;
    border: 2px solid white;
}


#fullname {
    align-self: center;
    font-size: 2rem;
    color: rgba(53, 66, 82, 1);
    text-align: center;
}

#job-title {
    align-self: center;
    color: #91979c;
    font-weight: 600;
    text-align: center;
}

#a-propos {
    margin-top: 2rem;
}

.title1 {
    color: #91979c;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.subtext {
    color: white;
    font-size: 0.9rem;

}

.mt-3rem {
    margin-top: 3rem;
}

.mb-3rem {
    margin-bottom: 3rem;
}

.text-align-justify {
    text-align: justify;
}


#download-cv {
    display: flex;
    justify-content: center;
}

.div-img-customer {
    display: flex;
    align-self: center;
}

.img-customer {
    max-height: 65px;
    max-width: 140px;
}


#fr-button
{
    display: none;
}