
footer.agave-footer {
    background-color: $bg-gray;
    padding: 25px 15px;
    position: relative;
    width: 100%;
    
    .row {
        margin: 0 auto !important; 
    }
    
    p {
        color: #000000;
        font-size: 18px;
        line-height: 21px;
        margin-bottom: 22px;
        text-align: center;
    }

    .terms-social-container {
        display: flex;
        align-items: center;
        justify-content: center;
        @include breakpoint(small down) {
            flex-direction: column;
        }
        .footer-link {
            padding: 10px 15px;
            border-right: 3px solid #fff;
            a {
                @extend .cta-link;
                color: $agave-light-blue;
                font-weight: 700;
                @include breakpoint(small down) {
                    width: 100%;
                    border-right: none;
                    color: $agave-light-blue;
                    border-bottom: 0;
                    text-align: center;
                }
            }
        }

        .social {
            padding: 0 15px;
            gap: 10px;
            display: flex;
            align-items: center;
            a {
                
                svg {
                    fill: $agave-light-blue;
                }
                &:hover {
                    svg {
                        path {
                            fill: #0097BC;
                        }
                    }
                }
            }
        }        
    }
}