  .hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #0087ca;
  }
  
  .hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  .hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  .hover-underline-animation2 {
    display: inline-block;
    position: relative;
    color: #0087ca;
  }
  
  .hover-underline-animation2::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ADD8E6;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  .hover-underline-animation2:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }

  .navigation .navbar-nav > li > a {
    padding: 5px 5px !important;
    color: #fff !important;
  }

  .navigation .navbar-nav {
    padding: 20px;
    background-color: #1163af;
  }

  .input-group-append {
    cursor: pointer;
  }

  .animate-character
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 50px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
.student-img {
  width: 150px;
  height: 150px;
}
#main-content { 
  /* background: url(http://img.timeinc.net/time/photoessays/2008/trees/franklin_trees_01.jpg); */
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center; 
  /* height: 100vh; 100% of viewport height */
  margin: 0 auto; 
  position: relative; 

}
.modal-body ul {
  list-style: disc !important;
  margin: 10px !important;
  padding: 10px !important;
}

.row-eq-height {
  display: flex;
  flex-wrap: wrap;
}
.row-eq-height > [class*='col-'] {
  display: flex;
  flex-direction: column;
}