html,
body {
    overflow: hidden;
}

.row {
    width: 100vw;
    height: 90vh;
    --bs-gutter-x: 0rem;
}

.col-md-5 {
    padding: 0;
}

.profile-content {
    display: flex;
    align-items: center;
    margin-left: 140px;
    margin-top: 70px;
}

.img-profile {
    height: 70vh;
}


.img-profile img {
    display: block;
    margin: auto;
    height: 100%;
    width: auto;
    border-radius: 0.4rem;
}

.text-profile {
    margin-left: 40px;
    margin-right: 20px;
    max-width: 570px;
    font-size: 1rem;
    text-align: justify;
    color: #555;
}

.title-profile {
    font-size: 1.5rem;
    color: #555;
    text-transform: uppercase;
}

.social-container {
    display: none;
}

.whatsapp-link {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 15px;
    right: 15px;
    background-color: #fff;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 40px;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000;
}

.whatsapp-link .fa-brands {
    color: #949494;
}

.whatsapp-link .fa-brands:hover,
.msg:hover {
    color: #5a5a5a;
}

@media (max-width: 576px) {
    .social-container {
        display: block;
    }
}

@media (max-width: 767.98px) {

    html,
    body {
        overflow-y: visible;
    }
}

@media (max-width: 992px) {

    html,
    body {
        overflow-y: visible;
    }

    .img-profile {
        margin-top: 6px;
        margin-bottom: 6px;
    }

    .title-profile {
        display: flex;
        justify-content: center;
    }

    .text-profile {
        margin-right: 40px;
        max-width: none;
    }

    .profile-content {
        display: block;
        align-items: center;
        margin-top: 20px;
        margin-left: 0px;
    }
}