.navbar{
    /* background-size: cover; */
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    /* width: 100%;
    height: 100vh; */
    color: #fff;
    background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
    background-size: 400% 400%;
    position: relative;
    animation: change 9s ease-in-out infinite;
  }
  footer{
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    /* width: 100%;
    height: 100vh; */
    color: #fff;
    background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
    background-size: 400% 400%;
    position: relative;
    animation: change 9s ease-in-out infinite;
  }
  .sumit{
    border: none;
    border-radius: 30px;
    font-size: 20px;
    height: 45px;
    outline: none;
    width: 25%;
    color: black;
    background: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: .3s ;
}
.sumit:hover{
    box-shadow: 1px 5px 7px 1px rgba(0, 0, 0, 0.2);
}
  .footer_section{
      border-top: 3px solid #007BFF;
      border-radius: 10px;
  }
  .footer_links ul li{
      list-style: none;
      margin-bottom: 1rem;
  }
  .footer_links ul li a{
      color: #ffff;
      text-decoration: none;
      transition: all 0.2s linear;
  }
  .footer_links ul li a:hover{
      text-decoration: none;
      margin-left: 5px;
  }
  #button{
      position: fixed;
      right: 5%;
      bottom: 5%;
      z-index: 100;
      
  }
  .mt-small-2{
      margin-top: 0rem!important;
  }
  .mt-small-5{
      margin-top: 0rem!important;
  }
  .mb-small-2{
      margin-bottom: 0rem!important;
  }
  .mb-small-5{
      margin-bottom: 0rem!important;
  }
  /* for mobile responsive setting */
  @media(max-width: 767px){
      .mt-small-2{
          margin-top: .5rem!important;
      }
      .mt-small-5{
          margin-top: 3rem!important;
      }
      .mb-small-2{
          margin-bottom: .5rem!important;
      }
      .mb-small-5{
          margin-bottom: 3rem!important;
      }
  }
  .upload{
    width: 125px;
    position: relative;
    margin: auto;
  }
  
  .upload img{
    border-radius: 50%;
    border: 8px solid #DCDCDC;
  }
  
  .upload .round{
    position: absolute;
    bottom: 0;
    right: 0;
    background: #00B4FF;
    width: 32px;
    height: 32px;
    line-height: 33px;
    text-align: center;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .upload .round input[type = "file"]{
    position: absolute;
    transform: scale(2);
    opacity: 0;
  }
  
  input[type=file]::-webkit-file-upload-button{
      cursor: pointer;
  }