footer {
    background-color: var(--light-gray);
    z-index: 0;
    position: relative;
    overflow: hidden;
}
footer #footer-content > div,
footer #copyright > div{
    margin: 0 auto;
    width: 100%;
    max-width: 1540px;
    padding-left: 120px;
    padding-right: 120px;
    position: relative;
    box-sizing: border-box;
}
footer #footer-content {
    padding-top: 100px;
    padding-bottom: 70px
}

#footer-content > .vc_row + .vc_row{
    margin-top: 50px;
}
#footer-content > .vc_row:nth-child(2) > div{
    padding-top: 70px;
    border-top: 1px solid #d7d6cf;
}
footer h3{
    font-size: 1.3em;
}

footer .svg-icon a{
    display: inline-block;
}
footer .footer-logo{
    margin-bottom: 70px;
}

footer .widget .menu{
    margin: 15px 10px;
}
footer ul {
    -webkit-padding-start: 0;
    -moz-padding-start: 0;
    padding-left: 0;
    margin: 0;
}
footer ul>li {
    list-style-type: none;
    display: block;
    position: relative;
    margin: 5px 0;
    text-decoration: none;
}
footer ul>li a{
    font-family: 'Urbanist', sans-serif;
    font-size: 1.1em;
    font-weight: 700;
    line-height: 1.4em;
    text-decoration: none;
}

footer ul>li li:before {
    content: '';
    width: 10px;
    height: 2px;
    margin-top: -4px;
    display: inline-block;
    background-color: var(--body-text-color);
    vertical-align: middle;
    margin-right: 10px;
}
footer ul>li li a {
    font-size: 0.9em;
}

.vc_desktop footer ul>li a:hover,
footer ul.menu li.current-menu-item > a{
    color: var(--primary-color) !important;
}

footer ul li.current-menu-item > a,
.vc_desktop footer ul li a:hover{
    opacity: 1;
}

footer .wpb_single_image{
    margin-top: 15px;
}

/* COPYRIGHT */

footer #copyright {
    background-color: var(--primary-color);
    padding: 15px 0;
    z-index: 2;
}
footer #copyright .copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer #copyright p{
    font-size: 0.75em;
    line-height: 1em;
    margin: 0;
    padding: 0 15px;
    display: inline-block;
}
footer #copyright p *{
    color: #fff;
    opacity: 0.7;
}
footer #copyright p > a{
    text-decoration: none;
    margin-right: 15px;
}
footer #copyright span a {
    text-decoration: none;
    color: #fff;
    opacity: 1;
}
footer #copyright p > a:hover, footer #copyright a:hover {
    text-decoration: underline;
}
footer #copyright .dp-logo {
    margin: 0 !important;
}
footer .dp-logo img {
    display: block;
    margin: 0;
}

/* GO TO TOP */

#go-to-top {
    position: fixed;
    right: 36px;
    bottom: 36px;
    z-index: 900;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    background-color: var(--light-gray);
    width: 36px;
    height: 36px;
    display: block;
    opacity: 0;
}
#go-to-top.show {
    opacity: 1;
}
#go-to-top canvas {
    width: 6px;
    height: 6px;
    border-bottom: 2px solid var(--body-text-color);
    border-right: 2px solid var(--body-text-color);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    position: absolute;
    top: 16px;
    left: 14px;
}
.vc_desktop #go-to-top:hover{
    background-color: var(--primary-color);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
.vc_desktop #go-to-top:hover canvas{
    border-color: #fff;
}



