.footer {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 555;
    background-color: #fff;
}

.footer__wrap {
    margin: 0 auto;
}

.disease,
.footer {
    padding-top: 1rem;
}

.footer__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    /* background: linear-gradient(to bottom, #18347d, #071844); */
    background-color: #BBBEE2;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 15px;
    box-shadow: 4px 4px 6px rgba(7, 24, 68, 0.25);
    transition: box-shadow 0.2s ease;
}

.footer__logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.footer__logo:hover {
    box-shadow: 2px 2px 2px rgba(7, 24, 68, 0.4);
}

.footer__logo .logo-container {
    margin-right: 1rem;
    margin-top: 0rem;
}

.company-name-footer {
    font-size: 1rem;
    font-weight: 500;
}

.footer__utility {
    padding-left: 5rem;
}

.footer__tel,
.info__tel {
    display: flex;
}

.footer__icon,
.info__icon {
    width: 2.5rem;
    /*margin-right: 0.5rem;*/
}

@keyframes scrollUp {
    0% {
        transform: translateY(130%);
    }

    100% {
        transform: translateY(-130%);
    }
}

@media (max-width: 992px) {
    .footer {
        background-image: none;
    }

    .footer__content {
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        padding: 0 0.5rem;
        gap: 12px;
    }

    .footer__wrap {
        padding-bottom: 5px;
        padding-right: 0;
    }

    .footer__logo {
        flex-direction: column;
        width: 50%;
        height: 65px;
        gap: 5px;
        padding: 0px, 0px;
    }

    .footer__logo img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

    .footer__logo:link,
    .footer__logo:visited {
        color: white;
    }
}