/*======== Footer Style ==========*/
.footer {
    background-color: var(--theme-tertiary-color);
}
.footer-upper {
    padding: 50px 0;
}
.footerLogo img {
    max-width: 150px;
}
.footer-widget p {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.footer-upper ul.footerList li a {
    padding: 5px 0;
    padding-left: 15px;
    position: relative;
    display: inline-block;
    color: rgb(255 255 255 / 1);
    text-decoration: none;
}

.footer-upper ul.footerList li a:before {
    content: "\f105";
    font-family: FontAwesome;
    left: 0;
    position: absolute;
    font-size: 13px;
    top: 8px;
}

ul.footerList {
    margin: 0;
    padding: 0;
}

.links-widget ul li {
    margin-bottom: 5px;
    list-style: none;
}

.footer-widget .widget-title {
    color: #fff;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: normal;
}

.footer-bottom {
    padding: 20px 0;
    font-size: 1.5rem;
    color: #fff;
    border-top: 1px solid #94a2b1;
}

.footer-bottom .col.text-center {
    display: flex;
    justify-content: space-between;
}

.footer-bottom .col.text-center a {
    margin: 0 6px;
    color: #fff;
    text-decoration: underline;
}

.footer-bottom p {
    display: block;
    color: #fff;
    font-size: 15px;
    margin-bottom: 0;
}

.footer-copyright {
    color: #fff;
    font-size: 15px;
}

/* social Icon */

.social-items a {
    font-size: 15px;
    color: var(--site-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 36px;
    box-shadow: 0 5px 25px rgb(0 0 0 / 15%);
    text-decoration: none;
    position: relative;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.4s ease;
}
.social-items a > img {
    width: 20px;
}
.social-items a:last-child {
    margin-right: 0;
}

.social-items a:before {
    position: absolute;
    content: "";
    height: calc(100% + 6px);
    width: calc(100% + 6px);
    border-radius: 50%;
    border: 2px solid var(--site-primary-color);
    animation: 1.5s linear 0s normal none infinite focuse;
}
.linkIcons {
    display: grid;
    grid-template-columns: repeat(auto-fit, 39px);
    gap: 10px;
}

.links-widget a {
    color: #fff;
}

.links-widget a:hover {
    color: #fff;
}
.links-widget address {
    color: #fff;
}
@media (max-width: 767px) {
    .linkIcons {
        justify-content: center;
    }
}

.social-items a:hover i {
    -webkit-animation: jello-horizontal 0.9s both;
    animation: jello-horizontal 0.9s both;
}

.social-items a:hover {
    text-decoration: none;
    color: var(--site-secondary-color);
}

@media (max-width: 991px) {
    .footer-upper:before,
    .footer-upper:after {
        width: 0;
    }

    .footer-bottom .col.text-center {
        display: block;
    }

    .footer-bottom p,
    .footer-copyright {
        font-size: 1.4rem;
    }

    .footer-widget.address-widget a {
        color: #fff !important;
    }

    .footer-bottom .col.text-center a {
        margin: 0 5px;
    }

    .footer-widget.address-widget a {
        color: #fff !important;
    }

    .footer-widget,
    .footer-widget p {
        text-align: center;
    }

    .linkIcons {
        justify-content: center;
    }
}
