/*======== Footer Style ==========*/
.footer {
    background-image: url("./../../images/background/footer-bg.jpg");
    background-position: center top;
    color: #fff;
    padding-top: 150px;
    position: relative;
    overflow: hidden;
}
.footer:before {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("./../../images/assets/footer-celebration.gif");
    opacity: 0.7;
    background-position: bottom;
}
.footer-upper {
    padding: 40px 0;
}

.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: 18px;
}

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

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

@keyframes focuse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    75% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes slide {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 40px 0;
    }
}

@-webkit-keyframes jello-horizontal {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes jello-horizontal {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.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);
}
