:root{
    --footer-main:#13514e;
    --footer-light:#0d3231;
    --white:#fff;
    --primary:#0d6efd;
    
}

/* Footer */

.krims-footer{
    background:var(--footer-main);
    color:var(--white);
    padding-top:80px;
    position:relative;
    font-family:"Poppins", sans-serif ;
}

/* Footer Widgets */

.footer-widget h5{
    font-size:18px;
    /* font-weight:700; */
    margin-bottom:25px;
    position:relative;
}

.footer-widget h5::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:50px;
    height:3px;
    /* background:#fff; */
    transition:.4s;
}

.footer-widget:hover h5::after{
    width:90px;
}

.footer-widget p{
    line-height:1.8;
    color:rgba(255,255,255,.85);
}


/* Contact */

.footer-contact{
    list-style:none;
    padding:0;
    margin:20px 0 0;
}

.footer-contact li{
    margin-bottom:15px;
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-contact i{
    width:20px;
}

/* Links */

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

.footer-links li{
    margin-bottom:15px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    transition:.4s;
}

.footer-links a:hover{
    padding-left:10px;
    color:#0463FA;

}

/* Newsletter */

.footer-newsletter{
    display:flex;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    margin-bottom:25px;
}

.footer-newsletter input{
    border:none;
    outline:none;
    flex:1;
    padding:14px;
}

.footer-newsletter button{
    border:none;
    background:#E42525;
    color:#fff;
    padding:0 10px;
    transition:.4s;
    margin-left: -40px;
}

.footer-newsletter button:hover{
    background:#E42525;
}

/* Social */

.follow-title{
    margin-bottom:15px;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.5);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.4s;
    text-decoration:none;
}

.footer-social a:hover{
    background:#fff;
    color:var(--footer-main);
    transform:translateY(-5px);
}

/* Footer Bottom */

.footer-bottom{
    background:var(--footer-light);
    margin-top:60px;
    padding:20px 0;
}

.footer-bottom-wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom p{
    margin:0;
}

/* Scroll Top */

#scrollTopBtn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#E42525;
    color:#fff;
    font-size:20px;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.4s;
    z-index:999;
}

#scrollTopBtn.show{
    opacity:1;
    visibility:visible;
}

/* Animation */

.footer-widget{
    animation:fadeUp .8s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Responsive */

@media(max-width:991px){

    .footer-widget{
        text-align:center;
    }

    .footer-widget h4::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-contact li{
        justify-content:center;
    }

    .footer-social{
        justify-content:center;
    }
}

@media(max-width:768px){

    .footer-bottom-wrap{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

    .footer-newsletter{
        flex-direction:column;
    }

    .footer-newsletter button{
        padding:12px;
    }
}