.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(--lblue1), var(--lblue3), var(--lblue1));
    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(--lbluergba3);
    -moz-box-shadow: 0px -10px 30px 10px var(--lbluergba3);
    box-shadow: 0px -10px 30px 10px var(--lbluergba3);
}

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

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

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

.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;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 45px 0px;
}

.logo-footer a {
    position: relative;
    z-index: 1;
}

.logo-footer img {
    width:240px;
    margin: auto !important;
}




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

}


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

footer .social-icons li a svg {
    position: relative;
    top: 5px;
    width: 20px;
    height: 20px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white);
    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-start;
    list-style-type: none;
    padding: 0;
    margin: 0;
}


@media only screen and (max-width: 767px) {
    /*.social-icons .social-media-footer li a{
    height:36px;
    width:36px;
    line-height:36px;
    }

    footer .social-media-footer li a svg {
    top: 8px;
    width: 20px;
    height: 20px;

}*/

}


.footer-widget-title {
    font-size: 24px;
    color: var(--white);
    font-weight: 600;
    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(--white) none repeat scroll 0 0;
    bottom: -10px;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    width: 25px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.footer-widget-title::after {
    background: var(--dblue2) none repeat scroll 0 0;
    bottom: -10px;
    content: "";
    height: 6px;
    left: 20px;
    position: absolute;
    width: 75px;
    -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 10px;
    display: block;
    color: var(--white);
    font-size: 16px;
    -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(--gray3);
    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;
    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: 16px;
    line-height: 1.2;
    font-weight: bold;
    color: var(--white);
}

.container-adress .address p {
    font-size: 15px !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(--lblue2);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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


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


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

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

.copyright a svg {
    position: relative;
    top: 0px;
    width:20px;
    height: 20px;
    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;
}

