.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 */
.footer-l1 {
    background-color: #004c67;
    padding: 70px 0;
    color: #fff;
}

.footer-cols {
    display: flex;
    gap: 40px;
    justify-content: space-around;
    align-items: flex-start;
}

.footer-col {
    max-width: 440px;
}

.footer-title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 2;
    gap: 20px;
}

.footer-links a,
.footer-links a:link,
.footer-links a:active,
.footer-links a:visited {
    display: block;
    padding: 4px 0;
    font-weight: 300;
    color: #fff;
}

.footer-links a:hover {
    color: #ffcccc;
}

/** footer-info */
.footer-info-item {
    margin-bottom: 14px;
    display: flex;
    gap: 10px;
    font-weight: 300;
    color: #fff;
}

.footer-info-item a,
.footer-info-item a:link,
.footer-info-item a:active,
.footer-info-item a:visited {
    display: block;
    font-weight: 300;
    color: #fff;
}

.footer-info-item a:hover {
    color: #ffcccc;
}

/** footer l2 */
.footer-l2 {
    padding: 20px 0;
    background-color: #000000;
    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: #ffc800;
    font-size: 24px;
    color: #1d475f;
}

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

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

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

@media screen and (max-width: 1100px) {
    .footer-cols {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        width: fit-content;
        margin: auto;
    }

    .footer-col {
        max-width: 600px;
    }
}

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

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