.bg-gradient-footer {
    /*background-image: linear-gradient(to right bottom, var(--lblue1), var(--lblue2), var(--lblue3), var(--lblue2), var(--lblue1));*/
    background: linear-gradient(221deg, var(--gray3), var(--orange2), var(--orange1));
    background-size: 300% 300%;
    -webkit-animation: bg-gradient-animator 10s ease infinite;
    -moz-animation: bg-gradient-animator 10s ease infinite;
    -o-animation: bg-gradient-animator 10s ease infinite;
    animation: bg-gradient-animator 10s ease infinite;
    -webkit-box-shadow: 0px -10px 30px 10px var(--blackrgba1);
    -moz-box-shadow: 0px -10px 30px 10px var(--blackrgba1);
    box-shadow: 0px -10px 30px 10px var(--blackrgba1);
}

.footer-navbar li {
    display: inline-block;
    margin-bottom: 0;
}

.footer-navbar li a {
    color: var(--white);
}

.footer-navbar li a:hover {
    color: var(--cccccc);
}

.footer-navbar li:last-child a {
    /*padding-right: 0;*/
}

.footer-navbar li:first-child a {
   /* padding-left: 0;*/
}

.footer-navbar .nav-link:focus {
    color: inherit;
}

.row.g-0 {
    margin-right: 0;
    margin-left: 0;
}

.row.g-0 > * {
    padding-right: 0;
    padding-left: 0;
}

.border-color-transparent-white-light {
    border-color: var(--blackrgba1) !important;
}

.align-items-center {
    align-items: center !important;
}

.last-paragraph-no-margin p:last-of-type {
    margin-bottom: 0;
}

.ps-0 {
    padding-left: 0 !important;
}

.lh-normal {
    line-height: normal;
}


@-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%
    }
}


.logo-footer {
    position: relative;
    z-index: 1;
    padding: 45px 0px;
    text-align: center;
}


.logo-footer img {
    width:120px;
    margin: auto;
    text-align: center;
}



.social-icons {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: right;
}


footer .social-icons li a {
    background: var(--white);
    color: var(--black);
}

footer .social-icons li a svg {
    position: relative;
    top: 4px;
    width: 22px;
    height: 22px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--black);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


footer .social-icons li:hover a svg {
    fill: var(--white);
}

footer .social-icons {
    /*display: flex;
    align-items: center;
    justify-content: flex-end;*/
    list-style-type: none;
    padding: 0;
    margin: 0;
}




.footer-widget-title {
    font-size: 24px;
    color: var(--white);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
    width: 100%;
}

.footer-widget-title-f18 {
    font-size: 18px !important;
}

.footer-widget-title::before {
    background: var(--gray7) none repeat scroll 0 0;

    bottom: -10px;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    width: 15px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.footer-widget-title::after {
    background: var(--lblue2) none repeat scroll 0 0;
    bottom: -10px;
    content: "";
    height: 6px;
    left:18px;
    position: absolute;
    width:55px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}


.footer-widget-links {
    margin: 0;
}

.footer-widget-links li {
    position: relative;
    padding-bottom: 5px;
    /*border-bottom: 1px solid var(--whitergba2);*/
}

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


.footer-widget-links li::before {
    position: absolute;
    content: "";
    background-position: top center;
    background-repeat: no-repeat;
    background: url(../images/chevron-right.svg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    top: 50%;
    left: -25px;
    height: 24px;
    width: 24px;
    color: var(--dblue2);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.footer-widget-links li:focus::before,
.footer-widget-links li:hover::before {
    opacity: .5;
    left: 0px;
}


.footer-widget-links li a {
    padding: 7px 0px 5px 15px;

    display: block;
    color: var(--dblue1);
    font-size: 15px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: bold;
}

.footer-widget-links li a svg {
    position: relative;
    top: 0px;
    width: 22px;
    height: 22px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.footer-widget-links li:focus a,
.footer-widget-links li:hover a {
    color: var(--white);
    padding-left: 25px;
}


.footer-border-top {
    width: 100%;
    display: block;
    border-top: 1px solid var(--blackrgba1);
}


footer .icon-info {

}

footer .icon-info svg {
    position: relative;
    top:-5px;
    width: 60px;
    height: 60px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.container-adress {
    display: flex;
    flex-direction: column;
    /* align-items: center;*/
    justify-content: start;
}

.container-adress .info {
    display: flex;
    align-items: center;
    justify-content: start;
}


.container-adress .icon {
    margin-right: 10px;
}

.container-adress .address {
    font-size: 15px;
    line-height: 1.2;
    font-weight: bold;
    color: var(--white);
}

.container-adress .address p {
    font-size: 16px !important;
    line-height: 1.2;
    font-weight: bold;
    color: var(--white) !important;
    margin: 0px;
}

.social-links-adress {
    display: flex;
    justify-content: start;
}


.social-links-adress a {
    display: block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 24px;
    text-align: center;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    border: 0;
    background: var(--white);
    overflow: hidden;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    font-weight: normal;
    margin-right: 10px;
    -webkit-box-shadow: 0px 3px 20px 0px var(--blackrgba3);
    -moz-box-shadow: 0px 3px 20px 0px var(--blackrgba3);
    box-shadow: 0px 3px 20px 0px var(--blackrgba3);
}

.social-links-adress a:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    background: var(--dblue2);
}


.social-links-adress a svg {
    position: relative;
    top: 3px;
    width: 24px;
    height: 24px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--dgreen1);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.social-links-adress a:hover svg {
    fill: var(--black);
}


.container-adress .social-links a {
    margin-right: 10px;
}


.footer-widget-contact {

}

.footer-widget-location p,
.footer-widget-contact p {
    margin: 0px;
    color: var(--white);
    font-size: 14px;
}

.footer-widget-contact li {
    position: relative;
    min-height: 36px;
    padding-left: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white);
    font-size: 14px;
    line-height: 1.1;
    margin-bottom: 3px;
}

/*.footer-widget-contact li:last-child {
    padding-top: 5px;
    margin-bottom: 5px
}*/

.footer-widget-contact li + li {
    border-top: 0px solid var(--lbluergba2);
}


.footer-widget-contact li svg {
    position: relative;
    top: 2px;
    left: -10px;
    width: 22px;
    height: 22px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.footer-widget-contact li:hover svg {
    fill: var(--white);
}


.footer-widget-contact li a {
    color: var(--white);
    font-size: 16px;
    line-height: 1.1;
    font-weight: bold;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.footer-widget-contact li a span {
    font-size: 14px;
}

.footer-widget-contact li:hover a {
    color: var(--cccccc);
}

.text-left-copy-links {
    text-align: left !important;
}

@media only screen and (max-width: 991px) {
    .copyright {
        margin-top: 30px;
    }

    .text-left-copy-links {
        text-align: center !important;
    }
}


.copyright {

}

.copyright img {
    width: 50px;
}

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

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

.copyright a:focus,
.copyright a:hover {
    color: var(--dblue1);
}

.copyright a svg {
    position: relative;
    top: 0px;
    width: 90px;
    height: 22px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white) !important;
    transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}


.copyright a:hover svg {
    fill: var(--developer) !important;
}



.footer-hours {
    border:0px solid var(--cccccc);
    padding: 0px 0 10px 0px;
    border-collapse: separate;
    border-spacing: 0px 0px;
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius:5px;
    border-radius:5px;
    font-size: 15px;
}
.footer-hours td,
.footer-hours th {
    color: var(--cccccc) !important;
    border: none;
    padding: 0 15px;
    border-radius: 0px;
    border-right-style: none;
    font-weight: 400;
    font-size: 15px;
}

.footer-hours th.important,
.footer-hours td.important {
    color: var(--white) !important;
    border: none;
    padding: 0 15px;
    border-radius:0px;
    border-right-style: none;
    font-weight: 600;
    font-size: 15px;
}

@media only screen and (max-width: 525px) {

    .footer-hours td,
    .footer-hours th {
        padding: 0 10px;
    }

    .footer-hours th.important,
    .footer-hours td.important {
        padding: 0 10px;

    }
}


