/* Footer Styling Start */
footer {
    /*padding: 10px 0;*/
    padding: 30px 0 10px 0;
}

    footer .container {
        display: flex;
        gap: 10px;
    }

    footer .info {
        width: 29%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

        footer .info .logo {
            width: 268px;
            height: 101px;
            overflow: hidden;
        }

            footer .info .logo img {
                margin-top: -18px;
            }

        footer .info ul li {
            margin-bottom: 10px;
        }

            footer .info ul li:last-child {
                margin-bottom: 0;
            }

            footer .info ul li a {
                display: flex;
                align-items: center;
                gap: 8px;
            }

            footer .info ul li svg {
                width: 14px;
                max-height: 14px;
            }

        footer .info p {
            max-width: 290px;
        }

    footer a {
        transition: all ease-in-out 0.2s;
        font-weight: 600;
        font-size:16px;
    }

    footer ul {
        list-style: none;
    }

    footer .info .social-icons {
        display: flex;
        gap: 5px;
    }

    footer .social-icons li {
        margin-bottom: 0;
    }

        footer .social-icons li a {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all ease-in-out 0.3s;
        }

            footer .social-icons li a svg {
                width: 15px;
                max-height: initial;
            }

footer .links:nth-of-type(1),
footer .links:nth-of-type(2) {
    width: 30%;
}

footer .links:nth-of-type(3) {
    width: 25%;
}

footer .links:nth-of-type(4) {
    width: 15%;
}


footer .links,
footer .map {
    padding: 10px;
    flex-grow: 1;
}

    footer h3,
    footer .h3head {
        font-size: 1.25rem;
        line-height: 1.8;
        margin-bottom: 15px;
        font-weight: 600;
        text-transform: capitalize;
    }

    footer .links p {
        margin-bottom:20px;
    }

    footer .links ul li {
        margin-bottom: 10px;
    }

footer iframe {
    width: 172px;
    height: 178px;
}

    footer .footer-last {
        padding-bottom: 15px;
        padding-top: 15px;
        border-top: 1px solid #818380;
        width:100%;
    }

    footer .footer-copy {
        width: 50%;
        float:left;
        margin-bottom:15px;
    }

        footer .footer-copy .copyright {
            font-size:16px;
        }

        footer .footer-copy ul.login-link {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        footer .footer-copy ul.login-link li {
            list-style:none;
        }

        footer .footer-copy ul.login-link li a {
            padding: 0 10px;
            display: block;
        }

@media screen and (max-width:1024px) {
    footer .container {
        flex-wrap: wrap;
    }

    footer .info,
    footer .links, footer .map {
        width: 48%;
    }

    footer iframe {
        width: 100%;
    }
}


@media screen and (max-width:767px) {
    footer .info, footer .map {
        width: 100%;
    }
}

@media screen and (max-width:479px) {
    footer .links:nth-of-type(1),
    footer .links:nth-of-type(2),
    footer .links:nth-of-type(3),
    footer .links:nth-of-type(4) {
        width: 100%;
    }

    footer .footer-copy {
        width: 100%;
        text-align: center;
    }
}