Footer not same width as header

I’m stumped - trying to get the footer -

.cp-footer

to align with the header and other containers (built on bootstrap) looks like a css rule is over writting it but cant figure it out…

http://stevanbarry.com/dan-morris-template/index.html

The footer is built differently from the container above it. Seems logical that it might display differently.

The container beneath the slider:


<div class="container">
    <div class="row">
        <div class="col-md-4">
        <div class="col-md-4">
        <div class="col-md-4">
    </div>
</div>

The footer construction is:


<div class="container">
    <div class="row">
        [color=blue]<div class="col-md-12 cp-footer cp-span-footer">[/color]
            <div class="col-md-[color=blue]3 cp-gutter-correction[/color]">
            <div class="col-md-[color=blue]3[/color]">
            <div class="col-md-[color=blue]6[/color]">
        [color=blue]</div>[/color]
    </div>
</div>

Thank you @ronpat it made me look at the

.cp-span-footer

rule which seems to be the issue.