:root {
    --z-under: 0;
    --z-default: 1;
    --z-above: 2;
    --z-header: 20;
    --z-overlay: 20;
    --z-loader: 100;
    --red: #ff2803;
    --yellow: #f9b71b;
    --blue: #1795f0;
    --green: #30e462;
    --ultra-dark: #000;
    --dark: #150c0f;
    --medium-dark: #201317;
    --sand: #f4f5ef;
    --white: #fff;
    --large: 1440px;
    --desktop: 1280px;
    --tablet-h: 1024px;
    --tablet: 979px;
    --tablet-w: 768px;
    --mobile-w: 640px;
    --mobile: 480px
}

.Footer {
    color: var(--white);
    display: flex;
    flex-flow: column;
    max-width: none;
    min-height: 100vh;
    overflow: hidden;
    padding: 24px;
    position: relative;
    width: 100%
}

.Footer,
.Footer:after {
    background-color: var(--dark)
}

.Footer:after {
    content: "";
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translate(-50%);
    width: 100vw;
    z-index: -1
}

.Footer .COCustom {
    background-color: var(--white);
    margin: 0 .2rem
}

.Footer__contact {
    margin-bottom: 120px;
    margin-top: 120px
}

@media (max-width:480px) {
    .Footer__contact__container {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center
    }
}

.Footer__contact__title {
    margin-bottom: 24px
}