* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Container for flexboxes */
.footer-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background-color: #1b1b2f;
}

.footer-h3
{
  color: white;
  font-family: "Raleway", sans-serif;
  margin-bottom: 10px;
  text-align: left;
  font-weight: bold;
  font-size:21px;
}

.footer-li-4
{
   display: inline;
   margin-right: 9%;
}

.footer-ul-1
{
   text-align: left;
}

.footer-li
{
   list-style-type: none;
   margin-bottom: 7px;
   text-align: left;
}

/* Create four equal columns */
.footer-column-1,.footer-column-2,.footer-column-3,.footer-column-4
{
  flex: 25%;
  padding: 20px;
  color: white;
  font-family: "Raleway", sans-serif;
}

.footer-a
{
  color: white;
  font-family: "Raleway", sans-serif;
  text-decoration: none;
}

/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) {
  .footer-column-1,.footer-column-2,.footer-column-3,.footer-column-4{
    flex: 50%;
  }
}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
/* @media screen and (max-width: 600px) {

  
  .footer-row 
  {
    flex-direction: column;
  }
  .footer-li-4
  {
    margin-right: 2%;
  }

  .footer-li,.footer-ul-1
  {
    text-align: center;
  }

  .footer-h3
  {
    text-align: center;
  }

} */


.footer-a
{
  position: relative;
  padding:13px 0px;
  color:lightgray;
  transition: all 0.3s ease;
}

.footer-a::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 2px;
  top: 80%;
  transition: all .6s ease;
}
.footer-a:hover {
  color:#ffffff;
}
.footer-a:hover::before {
  width: 100%;
  background-color:skyblue;
}
