/* =============================================================================
   MY Accounting & Tax Solutions
============================================================================= */

/*
|--------------------------------------------------------------------------
| File        : footer.css
| File Code   : CSS005
| Version     : 1.0.0
| Description : Website Footer
|--------------------------------------------------------------------------
*/


/* ==========================================================================
   FOOTER
========================================================================== */

.site-footer{

    background:var(--dark);

    color:rgba(255,255,255,.85);

    position:relative;

    overflow:hidden;

}

.site-footer::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--primary-color),
        var(--secondary-color)
    );

}


/* ==========================================================================
   FOOTER TOP
========================================================================== */

.footer-top{

    padding:80px 0 50px;

}


/* ==========================================================================
   FOOTER LOGO
========================================================================== */

.footer-logo{

    max-width:220px;

    margin-bottom:25px;

}

.footer-about{

    margin-bottom:30px;

    line-height:1.8;

}


/* ==========================================================================
   FOOTER HEADINGS
========================================================================== */

.footer-title{

    color:var(--white);

    font-size:1.25rem;

    margin-bottom:25px;

    position:relative;

}

.footer-title::after{

    content:"";

    display:block;

    width:45px;

    height:3px;

    background:var(--secondary-color);

    margin-top:10px;

    border-radius:50px;

}


/* ==========================================================================
   FOOTER LINKS
========================================================================== */

.footer-links{

    margin:0;

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:rgba(255,255,255,.75);

    transition:var(--transition-normal);

}

.footer-links a:hover{

    color:var(--secondary-color);

    padding-left:8px;

}


/* ==========================================================================
   CONTACT INFORMATION
========================================================================== */

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:18px;

}

.footer-contact i{

    color:var(--secondary-color);

    width:22px;

    margin-top:3px;

}


/* ==========================================================================
   SOCIAL ICONS
========================================================================== */

.footer-social{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.footer-social a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:var(--white);

    transition:var(--transition-normal);

}

.footer-social a:hover{

    background:var(--secondary-color);

    color:var(--white);

    transform:translateY(-4px);

}


/* ==========================================================================
   NEWSLETTER (Future Use)
========================================================================== */

.footer-newsletter{

    margin-top:25px;

}

.footer-newsletter input{

    background:rgba(255,255,255,.08);

    border:none;

    color:var(--white);

}

.footer-newsletter input::placeholder{

    color:rgba(255,255,255,.60);

}


/* ==========================================================================
   FOOTER BOTTOM
========================================================================== */

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:25px 0;

    font-size:.95rem;

}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.70);

}

.footer-bottom-links{

    display:flex;

    justify-content:flex-end;

    gap:25px;

}

.footer-bottom-links a{

    color:rgba(255,255,255,.70);

}

.footer-bottom-links a:hover{

    color:var(--secondary-color);

}


/* ==========================================================================
   PAYMENT / SOFTWARE LOGOS
========================================================================== */

.footer-partners{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    align-items:center;

    margin-top:25px;

}

.footer-partners img{

    max-height:40px;

    width:auto;

    opacity:.85;

    transition:var(--transition-normal);

}

.footer-partners img:hover{

    opacity:1;

}


/* ==========================================================================
   BACK TO TOP BUTTON
========================================================================== */

.back-to-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--primary-color);

    color:var(--white);

    box-shadow:var(--shadow-lg);

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:var(--transition-normal);

    z-index:999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    background:var(--secondary-color);

    transform:translateY(-5px);

}