*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body{
    background: #eef8ff;
    
}

footer{
    width: 100%;
    position: relative;
    bottom: 0;
    background: linear-gradient(to right, #00093c, #2d0b00);
    color: #fff;
    padding: 23px 0 30px;
    border-top-left-radius:  125px ;
    font-size: 20px;
    line-height: 20px;


}
.row{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;

}
.col{
    flex-basis: 25%;
    padding: 10px;


}

.col:nth-child(2) .col:nth-child(3){
    flex-basis: 15%;
}
.logo{
    width: 100px;
    margin-bottom: 30px;
    border-radius: 50%;
}

.col h3{
   width: fit-content;
   margin-bottom: 40px;
    position: relative;
}

.email-id{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;

}


.foot__list{
    list-style: none;
    margin-bottom: 12px;
}

.foot__a{
    text-decoration: none;
    color: #fff;

}

.foot__hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;

}

.foot__copyright{
    text-align: center;

}

.foot__underline{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;

}

.foot__underline span{
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}

@keyframes moving{
   
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}
@media (max-width: 700px){
    footer{
    bottom: unset;

    }
    .col{
        flex-basis: 20%;
        
       
    
    
    }
    
    .col:nth-child(2) .col:nth-child(3){
        flex-basis: 100%;
    }
   
    
}
@media (max-width: 438px){
  footer{
    font-size: var(--size-sm);
  } 
}
