/*--- footer ---*/

.site-footer {
    padding: 2em 0;
    .footer-logo {
        margin-bottom: 1em;
    }
    .contact-details {
        height: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: end;
        margin: 1em 0 0 0;
        @include medium-devices() {
            margin: 0;
        }
    }
    .footer-right {
        height: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column-reverse;
        margin: 1em 0 0 0;
        @include medium-devices() {
            margin: 0;
            align-items: end;
            flex-direction: column;
            justify-content: flex-end;
        }
        .disclaimer {
            a {
                font-weight: bold;
            }
        }
        .social-icons {
            .social-list {
                margin: 0.5em 0 0 0;
                padding: 0;
                @include medium-devices() {
                    margin: 0;
                    padding-left: 0.63rem;
                }
                li {
                    display: inline;
                    margin-right: .5em;
                    &:last-child {
                        margin-right: 0;
                    }
                    a {
                        i {
                            font-size: 30px;
                        }
                    }
                }
            }
        }
    }
}