/* ===========================
   Footer
=========================== */

.site-footer{
    background:linear-gradient(135deg,#26c599,#0b2c23);
    color:#ffffff;
    margin-top:80px;
}

.footer-container{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding:70px 40px 50px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:50px;
}

.footer-logo{
    width:260px;
    max-width:100%;
    height:auto;
    display:block;
    margin-bottom:25px;
}

.footer-text{
    max-width:430px;
    margin:0;
    color:rgba(255,255,255,.78);
    line-height:1.8;
    font-size:15px;
}

.footer-column h3{
    position:relative;
    margin:0 0 22px;
    color:#ffffff;
    font-size:20px;
    font-weight:600;
}

.footer-column h3::after{
    content:"";
    display:block;
    width:45px;
    height:3px;
    margin-top:10px;
    background:#7de2bd;
    border-radius:10px;
}

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column li{
    margin-bottom:14px;
}

.footer-column a{
    color:rgba(255,255,255,.76);
    text-decoration:none;
    transition:color .25s ease, transform .25s ease;
}

.footer-column li a{
    display:inline-block;
}

.footer-column li a:hover{
    color:#ffffff;
    transform:translateX(6px);
}

.footer-cta p{
    margin:0 0 25px;
    color:rgba(255,255,255,.78);
    line-height:1.8;
}

.footer-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border:1px solid #ffffff;
    border-radius:10px;
    background:#349077;
    color:#0c6f54;
    font-weight:600;
    text-decoration:none;
    transition:background .25s ease, color .25s ease, transform .25s ease;
}

.footer-btn:hover{
    background:transparent;
    color:#ffffff;
    transform:translateY(-2px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.14);
    padding:22px 20px;
    color:rgba(255,255,255,.72);
    text-align:center;
    font-size:14px;
}

/* ===========================
   Keep Footer at Page Bottom
=========================== */

html,
 

main{
    flex:1;
}

/* ===========================
   Tablet
=========================== */

@media (max-width:991px){

    .footer-container{
        grid-template-columns:1fr 1fr;
        padding:55px 30px 45px;
        gap:40px;
    }

}

/* ===========================
   Mobile
=========================== */

@media (max-width:700px){

    .site-footer{
        margin-top:50px;
    }

    .footer-container{
        grid-template-columns:1fr;
        padding:45px 2px 35px;
        gap:35px;
        text-align:center;
    }

    .footer-logo{
        width:220px;
        margin:0 auto 22px;
    }

    .footer-text{
        margin:0 auto;
    }

    .footer-column h3::after{
        margin:10px auto 0;
    }

    .footer-column li a:hover{
        transform:none;
    }

    .footer-btn{
        width:100%;
        max-width:280px;
    }

}