.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: #fbec02;
    padding: 50px 0;
    color: #fff;
}

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

.footer-logo {
    height: 150px;
}

.footer-title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    color: #34369f;
}

.footer-links {
    display: flex;
    gap: 30px;
}

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

.footer-links ul ul {
    columns: 1;
}

.footer-links a {
    font-size: 15px;
    color: #005c9b;
    transition: all 200ms linear;
}

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

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

.footer-rs {
    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;
}

a.footer-rs-item:hover {
    background-color: #ffedab;
    color: #1d475f;
}

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

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

.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: 40px;
        width: fit-content;
        margin: auto;
    }
}

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

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