/*****************************
	Footer
*****************************/
.footer {
    padding-top: 60px;
    //background-color: #f6f7f9;
    color: $gray-4;
    box-shadow: 0px -1px 0.25rem rgba(0, 0, 0, .05);
    border-width: 0;
    flex-shrink: 0;
    margin-top: auto;


    ul {
        margin: 0;
    }
}

.footer-shape {
    position: absolute;
    top: -100px;
}

.footer-top-logo img {
    height: 34px;
}

.footer {
    .footer-link {

        margin-bottom: 15px;

        &:last-child {
            margin-bottom: 0px;
        }

        a {
            color: $gray-4;
            line-height: 18px;

            &:hover {
                color: $primary;
            }
        }

    }
}

.footer {
    .footer-contact-info {
        li {
            display: flex;
            padding-bottom: 15px;

            i {
                line-height: 24px;
            }

            span {
                padding-left: 15px;
                align-self: top;
            }
        }
    }

    .footer-contact-info.bg-holder {
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        width: 100%;
    }
}

.footer-bottom {
    padding: 25px 0px 25px;
    color: #fff;

    ul {
        display: flex;
        margin-bottom: 0;

        li {
            margin-right: 10px;

            a {
                color: #fff;
                font-weight: 500;

                &:hover {
                    color: $primary;
                }
            }
        }
    }

    background-color: $gray-8;
}

.social {
    ul {
        li {
            a {
                font-weight: 600;
            }
        }

        li.facebook {
            a {
                color: #094ecd;
            }
        }

        li.twitter {
            a {
                color: #25d1e0;
            }
        }

        li.linkedin {
            a {
                color: #0077b5;
            }
        }
    }
}


