.whatsappFixed-frm {
    position: fixed;
    bottom: 16px;
    right: 20px;
    z-index: 101;
    width: 50px;
}

.whatsappFixed-frm a {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin: 5px 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 2px 0 #ffffff;
    transition: all 200ms linear;
}

.whatsappFixed-frm a [class*="fa-"] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 35px;
    color: rgba(255, 255, 255, 1);
}

.whatsappFixed-frm a.whatsappFixed {
    background-color: rgba(39, 197, 0, 1);
}

.whatsappFixed-frm a.whatsappFixed:hover {
    background-color: rgba(33, 169, 0, 1);
}

footer {
    padding: 120px 0 20px;
    background: #031303;
    font-size: 16px;
    line-height: 20px;
    font-style: italic;
    font-weight: 300;
    color: #E7E7E7;
}

footer a,
footer a:active,
footer a:visited {
    font-size: 16px;
    font-weight: 300;
    color: #93d9b3;
    transition: all 200ms linear;
}

footer a:hover {
    color: #3dcf7f;
}

.footer-cols {
    padding-top: 40px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

img.logo-idibra-footer {
    width: 212px;
}

.footer-col:nth-child(1) p {
    max-width: 260px;
    width: 100%;
    font-style: italic;
    margin: 0px auto 0 50px;
}

.link-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 2;
    column-gap: 20px;
}

.link-footer a {
    display: block;
    padding: 2px 0;
}

.footer-col:nth-child(3) {
    text-align: right;
}

.footer-copy {
    margin-top: 70px;
    font-size: 14px;
    text-align: center;
}

@media screen and (max-width: 900px) {
    .footer-cols {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        width: fit-content;
        margin: auto;
        text-align: center;
    }

    .link-footer ul {
        columns: 1;
    }

    .link-footer a {
        padding: 7px 0;
    }

    .footer-col:nth-child(1) p,
    .footer-col:nth-child(3) {
        margin: auto;
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    footer {
        padding: 0 0 120px 0;
    }
}