.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: 28px;
    width: 25px;
    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-l1 {
    background-color: #e8ebf1;
    padding: 40px 0;
}

.footer-cols {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.footer-logo {
    max-height: 100px;
}

.footer-title {
    margin-bottom: 7px;
    font-size: 22px;
    font-weight: 300;
    color: #004768;
}

.footer-info-item {
    margin: 20px 0;
    font-size: 16px;
    display: flex;
    gap: 14px;
}

.footer-info-item-icon {
    filter: invert(69%) sepia(99%) saturate(622%) hue-rotate(357deg) brightness(100%) contrast(106%);
    width: 22px;
    text-align: center;
}

.footer-l2 {
    padding: 20px 0;
    background-color: #596573;
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.footer-rs-lst {
    display: flex;
    gap: 14px;
}

a.footer-rs-item {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #b26861;
    font-size: 24px;
    color: #fff;
}

a.footer-rs-item:hover {
    background-color: #be473c;
    font-size: 26px;
}

.footer-rs-item [class*="fa-"] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.copy {
    color: #ffffff;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    text-align: center;
}

@media screen and (max-width: 1000px) {
    .footer-cols {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-col:last-child {
        width: fit-content;
    }

    .footer-psd-logo {
        margin: 30px auto 0;
    }
}

@media screen and (max-width: 600px) {
    .footer-col {
        width: fit-content;
        margin: 40px auto;
    }

    .footer-col:first-child,
    .footer-col:last-child {
        margin: auto;
    }
}