.footer-area {
    background: linear-gradient(221deg, #cccccc, #eeeeee, #f1f1f1);
    background-size: 600% 600%;
    -webkit-animation: bg-gradient-animator 16s ease infinite;
    -moz-animation: bg-gradient-animator 16s ease infinite;
    -o-animation: bg-gradient-animator 16s ease infinite;
    animation: bg-gradient-animator 16s ease infinite;

}


@-webkit-keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}

@-moz-keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}

@-o-keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}

@keyframes bg-gradient-animator {
    0% {
        background-position: 96% 0%
    }
    50% {
        background-position: 5% 100%
    }
    100% {
        background-position: 96% 0%
    }
}

.bg-shadow {
    -webkit-box-shadow: 0px -3px 25px 0px var(--blackrgba2);
    -moz-box-shadow: 0px -3px 25px 0px var(--blackrgba2);
    box-shadow: 0px -3px 25px 0px var(--blackrgba2);
}


footer.footer {
    color: var(--gray5);
    background: var(--white);
    padding: 0;
    font-family: 'Poppins', sans-serif !important;
}

.footer *{
    font-family: 'Poppins', sans-serif !important;
}

.footer__title {
    color: var(--lblue2);
    font-size: 20px;
    margin-bottom: 20px
}

.footer__button {
    width: 100%;
    margin-top: 4px
}

.footer-logo__link {
    text-decoration: none
}

.footer-logo__img {
    width: 200px;
}

@media only screen and (min-width: 992px) {
    .footer-logo__img {
        width: 250px;
    }
}


.footer-contacts {
    margin-bottom: 30px
}

@media only screen and (min-width: 992px) {
    .footer-contacts {
        margin-bottom: 0
    }
}

.footer-contacts p {
    margin-bottom: 0;
    line-height: 32px
}

.footer-contacts p a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    font-weight: bold;
}

.footer-contacts p a:hover {
    color: inherit;
    opacity: .75
}

.footer-menu {
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media only screen and (min-width: 576px) {
    .footer-menu {
        margin-bottom: 0
    }
}

.footer-menu__item {
    list-style: none;
    width: 100%;
    font-weight: bold;
}

.footer-menu__item--active .footer-menu__link {
    font-weight: bold;
}

.footer-menu__link {
    display: inline-block;
    position: relative;
    color: var(--gray5);
    line-height: 32px;
    text-decoration: none;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.footer-menu__link:hover,
.footer-menu__link:focus {
    color: var(--dblue2);
}

.footer-menu__link::after {
    content: "";
    display: block;
    width: 0%;
    height: 3px;
    background: var(--lblue2);
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.footer-menu__item--active .footer-menu__link::after,
.footer-menu__link:hover::after {
    width: 100%
}


footer .links ul {
    width: 100%;
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
}

footer .links li {
    position: relative;
    color: var(--gray5);
    padding: 10px 0px;
    font-size: 16px;
    width: 100%;
    float: left;
    line-height: 20px;
    text-align: left;
    -moz-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    border-bottom: 2px solid var(--blackrgba1);
    font-weight: bold;
    font-size: 16px;
}

footer .links li a {
    position: relative;
    color: var(--gray5);
    padding: 0px 0px;
    border-bottom: 0px solid var(--blackrgba1);
    font-size: 16px;
    margin-bottom: 1px;
    width: auto;
    display: block;
    text-align: left;
    -moz-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    font-weight: bold;
}

footer .links li:last-child {
    border-bottom: 0px solid #fc0;
}

footer .links li a span {
    position: relative !important;
    z-index: 10 !important;
}

footer .links li a:hover {
    color: var(--dblue2);
    padding-left: 10px;
    border-color: var(--lbluergba3);
}

footer .links li:hover {
    border-color: var(--lbluergba3);
}


.copyright {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
    border-top: 0px solid var(--blackrgba2);
    background: var(--blackrgba1);
}

@media (max-width: 600px) {
    .copyright {
        padding-top: 40px;
        padding-bottom: 90px;
    }
}



.copyright p {
    color: var(--gray5);
    font-size: 15px !important;
    line-height: 20px;
    margin-bottom: 0px;
}

.copyright a {
    color: var(--dblue2);
    font-size: 15px !important;
}

.copyright a:hover {
    color: var(--lblue2);
}


.footer-news {
    background: var(--dblue2);
}


.widget-newsletter-form {
    position: relative;
}

.widget-newsletter-form .form-control {
    font-size: 16px;
    background-color: var(--white);
}

.widget-newsletter-form .btn {
    min-width: 50px;
    width: 75px;
    height: 50px;
    line-height: 45px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 0;
    position: absolute;
    top: 0px;
    right: -1px;
    background: var(--lblue2);
    border-color: var(--lblue2);
}

.widget-newsletter-form .btn i {
    font-size: 24px;
}

.widget-newsletter-form .btn:focus,
.widget-newsletter-form .btn:hover {
    background: var(--lblue3);
    border-color: var(--lblue3);
}


.site-heading-footer{
    width:100%;
    position: relative;
}

.site-heading-footer h1,
.site-heading-footer h2,
.site-heading-footer h3 {
    color: var(--lblue2);
    display: inline-block;
    font-weight: 700;
    padding-bottom:10px;
    position: relative;
    padding-bottom:10px;
    margin-bottom:15px;
    font-size:24px;
    width:100%;
}




.site-heading-footer h1::before,
.site-heading-footer h2::before,
.site-heading-footer h3::before {
    background: var(--dblue2) none repeat scroll 0 0;
    bottom:3px;
    content: "";
    height:4px;
    left:0;
    position: absolute;
    width:90%;
}

.site-heading-footer h1::after,
.site-heading-footer h2::after,
.site-heading-footer h3::after  {
    background: var(--orange1) none repeat scroll 0 0;
    bottom: -1px;
    content: "";
    height:3px;
    left:0;
    position: absolute;
    width:50%;
}



.footer-widget-links-list {
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom:5px;
}

.footer-widget-links-list li {
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    flex: 0 0 100%;
    transition: all 500ms ease;
    margin-top:3px;
    margin-bottom: 3px;
}

.footer-widget-links-list li:hover {
    padding-left:20px;
}

.footer-widget-links-list li a {
    color:var(--orange2);
    font-size: 16px;
    letter-spacing: .01em;
    position: relative;
    padding-left: 15px;
    transition: all 500ms ease;
    width: 100%;
}

.footer-widget-links-list li a::before {
    font-family: "Material Design Icons";
    content: "\F13E";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.footer-widget-links-list li a::after {
    content: '';
    position: absolute;
    bottom:-3px;
    left: 0;
    width: 100%;
    height:2px;
    background-color: var(--lblue2);
    transform: scale(0, 1);
    transform-origin: left;
    transition: transform 500ms ease;
}

.footer-widget-links-list li:hover a::after {
    transform: scale(1, 1);
    transform-origin: right;
}

.footer-widget-links-list li:hover a {
    color: var(--lblue2);
}