:root {
    --main-text-color: rgba(50, 85, 105, 1);
}

main {
    background-image: none;
    display: flex;
    justify-content: center;
    height: 77.6vh;
}

.avatar {
    background-color: white;
    width: 50%;
}

.card img {
    position: relative;
    width: 20%;
    height: 5%;
    border-radius: 50%;
    margin: 1% 40%;
    box-shadow: 0 14px 20px 0 rgba(0, 0, 0, 0.77);
    z-index: 99;
}

.card .container {
    background-color: #9e8921;
    margin-top: -19%;
    height: 52vh;
    width: 70%;
    margin-left: 15%;
    border-radius: 5%;
    box-shadow: 0 14px 20px 0 rgba(0, 0, 0, 0.77);
    font-family: "Merriweather", serif;
    font-size: 1rem;
    position: relative;
}

.hlp-title {
    background-color: #ff253a;
    position: absolute;
    width: 100%;
    display: block;
    text-align: center;
    color: white;
    top: 42%;
    line-height: 2rem;
}

.container .hlp {
    position: absolute;
    color: white;
    max-width: 80%;
    line-height: 1.3rem;
    top: 52%;
    text-align: justify;
    left: 10%;
    font-size: 1rem;
}

.info-about {
    width: 50%;
}

.p-aside-about {
    position: relative;
    color: var(--main-text-color);
    font-size: 1rem;
    line-height: 1.4rem;
    text-align: justify;
    font-family: "Merriweather", serif;
    font-weight: bold;
    top: 18%;
    margin-bottom: 1rem;
    text-indent: 1.5rem;
    padding: 0 4.5rem 0 3rem;
}

.p-aside-about span {
    font-weight: bold;
    font-size: 1rem;
    color: #9e8921;
}

.div-lang {
    /*background-color: orange;*/
    background-color: transparent;
    width: 4rem;
    height: 5rem;
    right: .2rem;
    line-height: 1.2rem;
    top: 0.3rem;
}

.slider img {
    width: 60px;
    height: 60px;
    margin: 0;
    box-shadow: none;
}

/***********************************************************************/
/* Tablet                                                              */
/***********************************************************************/
@media screen and (min-width: 800px) and (max-width: 1280px) {
    .card .container {
        /*background-color: pink;*/
        height: 30vh;
        width: 80%;
    }

    .hlp-title {
        top: 15%;
    }

    .container .hlp {
        top: 30%;
    }

    .card img {
        margin: 10% 45%;
    }

    .p-aside-about {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/*************************************************/
/* Cellphone*/
/*************************************************/
@media (max-width: 768px) {
    main {
        background-size: 100% 20%;
        /*background-color: yellow;*/
        height: 100%;
        display: flex;
        position: relative;
        flex-direction: column;
    }

    .avatar {
        /*background-color: pink;*/
        width: 100%;
        position: absolute;
        top: 1rem;
        left: 0;
        height: 70vh;
    }

    .card .container {
        width: 90%;
        margin: -3rem auto;
    }

    .hlp-title {
        top: 20%;
    }

    .container .hlp {
        top: 37%;
        font-size: .9rem;
    }

    .p-aside-about {
        top: 75%;
        left: 0;
        width: 90vw;
        order: 2;
        padding: 0 1rem;
        font-size: .9rem;
    }

    .slider img {
        box-shadow: none;
        width: 3.2rem;
        height: 3rem;
    }

    .footer {

        top: calc(70vh + 1px);
        position: relative;
        margin-top: 1rem;
        order: 3;
    }
}