﻿footer {
    margin-top: auto;
    padding-top: 1em;
}

.bg-footer {
    background-color: rgba(0,0,0,0.9);
}

.address-box {
    justify-content: center;
}

.socials-list {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

a.footer-icon {
    margin: 1em;
}
        a.footer-icon > svg {
            color: #008d96;
            transition: 0.25s ease;
        }

        a.footer-icon:hover > svg {
            color: orange;
            transform: scale(1.25);
        }

address {
    color: #fff;
    font-weight: 200;
    letter-spacing: 1.5px;
    line-height: 1.4;
    margin-top: 1rem;
}

.address-box > p > a {
    color: #008d96;
    font-weight: 200;
    letter-spacing: 1.5px;
    line-height: 1.4;
    display: inline-block;
    position: relative;
}

    .address-box > p > a:after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #008d96;
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }

    .address-box > p > a:hover:after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

small {
    font-weight: 200;
}

    small > a {
        color: #008d96;
        font-weight: 200;
        letter-spacing: 1.5px;
        display: inline-block;
        position: relative;
    }

        small > a:hover {
            color: #008d96;
        }

        small > a:after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #008d96;
            transform-origin: bottom right;
            transition: transform 0.25s ease-out;
        }

        small > a:hover:after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }