.footer{
    padding: 80px 0;
    background-color: #353535;

    .box-address{
        display: flex;
        margin-right: 40px;

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

        > i{
            margin-right: 20px;
            font-size: $base-line * 1.8;
            color: $color-secundary;
        }

        address{
            color: $color-white;
            line-height: $base-line;

            strong{
                display: block;
                font-weight: 700;
            }
        }

        &-social{
            display: flex;
            margin-top: 20px;

            a{
                display: flex;
                align-items: center;
                justify-content: center;
                width: 23px;
                height: 23px;
                background-color: $color-white;
                border-radius: 100%;
                color: #353535;
                margin-right: 10px;

                &:hover{
                    background-color: $color-secundary;
                    color: $color-white;
                }
            }
        }
    }
}