*{
    margin-right: ;
    padding: 0;
    font-family: "Poppins",sans-serif;
    box-sizing: border-box;
  }
  
  body{
    background: #eef8ff;
  }
  
  footer{
    width: 100%;
    /* background: linear-gradient(to right, #A9F1DF, #3ba963); */
    /* background: radial-gradient(#fff, #A9F1DF); */
    background: black;
    color:white;
    padding: 100px 0 30px;
    border-top-right-radius: 125px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }
  
  .row{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
  }
  
  .col{
    flex-basis: 20%;
    padding: 10px;
    text-align: center !important;
    min-width: 280px;
  }
  .col ul li{
    margin-top: 50px;
  }
  
  .logo{
    width: 80px;
    margin-bottom: 30px;
  }
  
  .col h2{
    /* width: fit-content; */
    margin: auto;
    margin-bottom: 40px;
    position: relative;
  }
  
  .col p,
  .col h4,
  .col li{
    margin-bottom: 12px;
    color: #555;
  }
  
  .email-id{
    /* width: fit-content; */
    /* border-bottom: 1px solid #555 ; */
    margin: 20px 0;
  }
  
  ul li{
    list-style: none;
    margin-bottom: 12px;
  }
  
  ul li a{
    text-decoration: none;
  }
  
  form{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #555;
    margin-bottom: 50px;
  }
  
  form .fa-envelope,
  form .fa-arrow-circle-right{
    font-size: 18px;
    margin-right: 10px;
    color: #555;
  }
  
  form input{
    width: 100%;
    background: transparent;
    border: 0;
    outline: none;
  }
  
  form button{
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
  }
  
  .social-icons a i{
    transition: transform 0.5s;
  }
  
  .social-icons a:hover i{
    transform: scale(0.90);
  }
  .social-icons{
    margin-top: 70px;
  }
  i.fab{
    color: #555;
    margin: 7.5px;
  }
  
  i.fa-facebook-f:hover{
    color: #4267B2;
  }
  
  i.fa-instagram:hover{
    color: #cc2366;
  }
  
  i.fa-whatsapp:hover{
    color: #25d366;
  }
  
  i.fa-twitter:hover{
    color: #00acee;
  }
  
  i.fa-linkedin-in:hover{
    color: #0e76a8;
  }
  
  i.fa-youtube:hover{
    color: #f00;
  }
  
  hr{
    border-bottom: 1px solid #A9F1DF;
    width: 85%;
    align-self: center;
    margin: 20px auto;
  }
  
  .copyright{
    margin: 10px;
    font-size: 0.75rem;
    color: #555;
  }
  
  .underline{
    width: 70%;
    height: 3px;
    background: #6dbf87;
    border-radius: 3px;
    position: absolute;
    margin: 10px 15% 0 15%;
    /* top: 25%;
    left: 0; */
  }
  
  .underline span{
    width: 3px;
    height: 100%;
    background: #a9f1df;
    border-radius: 3px;
    position: absolute;
    top: 0;
    right: 1px;
    animation: moving 3s linear infinite;
  }
  
  @keyframes moving {
    0%{
      right: -20px;
    }
    0%{
      right: 100%;
    }
  }