section.user {
    background-color: #E7F3F9;
    padding-top: 3rem;
}

section.user .title {
    color: #215CA0;
    text-align: center;
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 2.4rem;
    line-height: 35px;
}

section.user .flex {
    display: flex;
    gap: 2rem;
    flex-direction: column;
}

section.user .user__card {
    background-color: #fff;
    position: relative;
    padding: 2rem;
    padding-top: 2.5rem;
}

section.user .user__card::before {
    content: "";
    width: 100%;
    height: 10px;
    background-color: #1987C6;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

section.user .user__card-title {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    gap: 1rem;
    color: #1987C6;
    font-size: 2rem;
    line-height: 29px;
    font-weight: bold;
    padding-bottom: 1rem;
    border-bottom: solid 1px #B8DAED;
    margin-bottom: 1.2rem;
}

section.user .user__card-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1987C6;
    border-radius: 18px;
    width: 9rem;
    height: 3.6rem;
    color: #FFFFFF;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 24px;
}

section.user .user__card-name {
    margin-top: 0;
    font-size: 1.6rem;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

section.user .user__card-address {
    font-size: 1.4rem;
    line-height: 20px;
    font-weight: normal;
}

section.user .user__card-text {
    margin-top: 0;
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 24px;
}

section.user .user__card-marker {
    font-weight: bold;
    text-decoration: underline;
    text-decoration-thickness: 6px;
    text-decoration-color: #FFFF65;
    text-underline-offset: -0.2em;
    text-decoration-skip-ink: none;
}


@media screen and (min-width: 991px) {
    section.user {
        padding-top: 5.2rem;
        padding-bottom: 6rem;
    }

    section.user .title {
        font-size: 3.2rem;
        line-height: 46px;
        margin-bottom: 3.3rem;
    }

    section.user .flex {
        gap: 4rem;
    }

    section.user .user__card {
        padding-top: 3.4rem;
        padding-left: 7rem;
        padding-right: 7rem;
        padding-bottom: 2rem;
    }

    section.user .user__card-title {
        padding-bottom: 1.4rem;
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
        margin-bottom: 1.5rem;
        font-size: 2.4rem;
        line-height: 35px;
    }

    section.user .user__card-name {
        font-size: 2rem;
        line-height: 29px;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    section.user .user__card-address {
        font-size: 1.6rem;
        line-height: 24px;
    }

    section.user .user__card-text {
        font-size: 1.6rem;
        line-height: 30px;
    }

    section.user .user__card-marker {
        text-decoration-thickness: 8px;
    }

    section.user .br {
        display: none;
    }
}

.footer-contact {
    margin-top: 0;
}