.footer {
    margin-bottom: calc(100vw * 30 / 375);
    background: linear-gradient(180deg, #FFFFFF -2.21%, #54C0B9 100%);
    position: relative;
}

.footer__contact-tape {
    display: none;
}

.footer__contact-tape>img {
    width: 100%;
}

.footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__logo {
    height: 2.5rem;
    margin-top: 3.75rem;
    margin-bottom: 1rem;
}

.footer__logo-image {
    height: 100%;
}

.footer__text {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 135%;
    letter-spacing: 0%;
    margin-bottom: 1rem;
    text-align: center;
}

.footer__icons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    height: 3rem;
}

.footer__icons>img {
    height: 100%;
    cursor: pointer;
}

.footer__certifications {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.footer__certifications-title {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0;
    margin: 0;
    color: #454545;
}

.footer__certifications-images {
    display: flex;
    gap: 0.75rem;
    height: 2.8125rem;
}

.footer__certifications-images>img {
    height: 100%;
}

.footer__disclaimer {
    background: var(--Brand-600, #01AFA2);

    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    padding-top: 0.75rem;
    padding-bottom: calc(100vw * 30 / 375);
    color: #FFF;
}


@media (min-width: 576px) {
    .footer {
        margin-bottom: 0;
    }

    .footer__contact-tape {
        display: inline-block;
        position: absolute;
        width: 10.2%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        cursor: pointer;
        transition: transform 0.3s ease-out;
        transform-origin: top;
    }

    .footer__contact-tape:hover {
        transform: translateX(-50%) scale(1.1);
    }

    .footer__container {
        align-items: flex-start;
    }

    .footer__logo {
        height: 3rem;
        margin-top: 3.25rem;
        margin-bottom: 0.875rem;
    }

    .footer__text {
        font-size: 1.75rem;
        margin-bottom: 1.75rem;
        text-align: left;
    }

    .footer__bottom {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-bottom: 1.75rem;
    }

    .footer__icons {
        gap: 1.5rem;
        margin-bottom: 0;
        height: 3.75rem;
    }

    .footer__certifications {
        display: flex;
        gap: 1rem;
        align-items: center;
        margin-bottom: 0;
    }

    .footer__certifications-title {
        font-size: 1.25rem;
        line-height: 100%;
        letter-spacing: 0%;
        margin: 0;
    }

    .footer__disclaimer {
        padding-top: 1.25rem;
        padding-bottom: 1.875rem;
        line-height: 1;
        text-align: right;
    }

    .footer__disclaimer-line {
        display: none;
    }
}