: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:35px;
    height:35px;
    border:none;
    border-radius:50%;
    background:#E42525;
    color:#fff;
    font-size:10px;
    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);
    }
}

/* ==========================
   TABLET (991px and below)
========================== */
@media (max-width:991px){

    .krims-footer{
        padding-top:60px;
    }

    .footer-widget{
        margin-bottom:40px;
    }

    .footer-widget h5{
        margin-bottom:20px;
    }

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

    .footer-newsletter{
        max-width:500px;
    }
}

/* ==========================
   MOBILE (767px and below)
========================== */
@media (max-width:767px){

    .krims-footer{
        padding-top:50px;
    }

    .footer-widget{
        text-align:center;
        margin-bottom:35px;
    }

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

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

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

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

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

    .footer-newsletter{
        flex-direction:column;
        background:transparent;
        gap:12px;
        border-radius:0;
    }

    .footer-newsletter input{
        width:100%;
        border-radius:8px;
        padding:14px;
    }

    .footer-newsletter button{
        width:100%;
        border-radius:8px;
        padding:14px;
        margin-left:0;
    }

    .footer-bottom{
        padding:15px 0;
    }

    .footer-bottom p{
        font-size:14px;
        line-height:1.6;
        text-align:center;
    }

    #scrollTopBtn{
        width:48px;
        height:48px;
        right:15px;
        bottom:15px;
        font-size:18px;
    }
}

/* ==========================
   EXTRA SMALL (480px)
========================== */
@media (max-width:480px){

    .krims-footer{
        padding-top:40px;
    }

    .footer-widget h5{
        font-size:17px;
    }

    .footer-widget p,
    .footer-links a,
    .footer-contact li{
        font-size:14px;
    }

    .footer-social a{
        width:38px;
        height:38px;
        font-size:14px;
    }

    .footer-newsletter input,
    .footer-newsletter button{
        padding:12px;
        font-size:14px;
    }

    .footer-bottom p{
        font-size:13px;
    }
}
footer p a {
    color: white;
    /* text-decoration: none; */
    /* font-weight: 600; */
    transition: 0.3s;
}

footer p a:hover {
    color: #E42525;
    text-decoration: underline;
}
.whatsapp-chat{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    border: 5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999999;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    animation: whatsappBounce 2s infinite;
}

.whatsapp-chat i{
    color: #fff;
    font-size: 38px;
}

@keyframes whatsappBounce{
    0%,100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-6px);
    }
}

.whatsapp-chat:hover{
    transform: scale(1.08);
}
@media (max-width:768px){

    .whatsapp-chat{
        width:55px;
        height:55px;
        right:15px;
        bottom:20px;
        border-width:4px;
    }

    .whatsapp-chat i{
        font-size:32px;
    }
}
.whatsapp-chat{
    position: fixed !important;
    right: 10px !important;
    bottom: 65px !important;
    width: 65px !important;
    height: 65px !important;
    background: #25D366 !important;
    border-radius: 50% !important;
    border: 4px solid #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    z-index: 999999999 !important;
    box-shadow: 0 5px 20px rgba(0,0,0,.25);
}

.whatsapp-chat i{
    color: #fff !important;
    font-size: 35px !important;
}
/* call Buttom */
/* .call-chat,
.whatsapp-chat{
    position: fixed;
    right: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 4px solid #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,.25);
    z-index: 999999999;
    animation: floatingBtn 2s infinite;
}

.call-chat{
    bottom: 00px;
    background: #1d8884;
}

.whatsapp-chat{
    bottom: 20px;
    background: #25D366;
}

.call-chat i,
.whatsapp-chat i{
    color: #fff;
    font-size: 32px;
}

@keyframes floatingBtn{
    0%,100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-6px);
    }
}

.call-chat:hover,
.whatsapp-chat:hover{
    transform: scale(1.08);
}

@media(max-width:768px){

    .call-chat,
    .whatsapp-chat{
        width: 55px;
        height: 55px;
        right: 15px;
    }

    .call-chat{
        bottom: 85px;
    }

    .whatsapp-chat{
        bottom: 15px;
    }

    .call-chat i,
    .whatsapp-chat i{
        font-size: 28px;
    }
} */