/* footer section */

.kb-footer-section {
    background-color: #1bc9ec;
    color: #fff;
    /* padding-bottom: 20px; */
    font-family: 'Poppins', sans-serif;
}

.kb-footer-left {
    background-color: #0D2A47;
    padding: 50px 30px;
}

.kb-footer-logo {
    width: 180px;
    margin-bottom: 25px;
}

.kb-footer-address {
    font-size: 15px;
    line-height: 22px;
    /* max-width: 280px; */
    /* margin: 0 auto; */
}

.kb-footer-address i {
    font-size: 18px;
    margin-right: 8px;
}

.kb-footer-social {
    margin-top: 25px;
}

.kb-footer-social a {
    color: #fff;
    font-size: 20px;
    margin: 0 12px;
    transition: .3s;
}

.kb-footer-social a:hover {
    opacity: .7;
}

.kb-footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-top: 20px;
}

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

.kb-footer-list li {
    font-size: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: .3s;
}

.kb-footer-list li a {
    color: #fff;
}

.kb-footer-list li i {
    margin-right: 8px;
    color: #1bc9ec;
}

.kb-footer-list li a:hover {
    padding-left: 5px;
    color: #0D2A47;
}

.kb-footer-contact {
    font-size: 15px;
    margin-bottom: 12px;
}

.kb-footer-contact i {
    margin-right: 10px;
    color: #1bc9ec;
}

.kb-footer-bottom-line {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    /* margin-top: 25px; */
}




/* Full screen loader */

#borewellWaterLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0F2C49;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.8s ease;
}

/* Borewell Pipe */
.borewell-body {
    width: 120px;
    height: 350px;
    background: #1A3A59;
    border: 6px solid #6A8EB3;
    border-radius: 60px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px #000;
}

/* Water rising */
.water-level {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #54D1FF, #0096D6);
    animation: riseWater 3s ease-in-out forwards;
}

/* Rising animation */
@keyframes riseWater {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

/* Fade out after load */
.fadeOutLoader {
    opacity: 0;
}