.dcn-footer {
    position: relative;
    padding: 24px 0;
    background: #2c2d30;
    border-top: 5px solid #8e8e8e;
    width: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.dcn-footer .footer-content {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 32px;
    align-items: flex-start;
    width: 100%;
    padding: 0 24px;
    margin: 0 auto;
    max-width: 1440px;
}

.dcn-footer .footer-section-links {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    gap: 32px;
    align-items: flex-start;
}

.dcn-footer .footer-section-links h3 {

    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-weight: 500;
}

.dcn-footer .footer-section-links .footerLinks {
    display: flex;
    justify-content: flex-start;
    flex-flow: row nowrap;
    gap: 16px;
}

.dcn-footer .copyright {
    width: 100%;
    padding-top: 20px;
    text-align: center;
}

.dcn-footer .scroll-to-top {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    background: #2b8acd;
    color: #fff;
    font-size: 20px;
    z-index: 1;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 37px;
}

@media screen and (max-width: 959px) {
    .dcn-footer {
        padding: 24px;
    }

    .dcn-footer .footer-content {
        flex-flow: column;
    }
}

@media screen and (max-width: 640px) {
    .dcn-footer .footer-section-links {
        flex-direction: column;
        justify-content: flex-start;
    }
}

@media screen and (max-width: 479px) {
    .dcn-footer .footer-section-links .footerLinks {
        flex-direction: column;
        gap: 0;
    }
}