/* Footer */
.footer {
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    background: linear-gradient(180deg,rgba(19,30,57,.9),#1e325c 20%);
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: row;
    margin-top: auto;
    padding: 20px;
    box-sizing: border-box; /* Ensure padding is included in the total width */
  }

  .fa-github:hover, .fa-linkedin:hover {
    color: rgba(0, 128, 128, 0.7) !important; /* Teal with 70% transparency */
    background-color: #1e325c !important; /* Dark orange background with 70% transparency */
    transition: 0.5s;
}
  
  .footer-left {
    flex: 50%;
  }
  .footer-left-social {
    margin-top: 2rem;
  }
  .footer-left-social-media {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .footer-left-social-media .fab {
    margin-right: 20px;
  }
  
  .fab:hover {
    opacity: 0.6;
  }
  
  .footer-credit {
    color: tomato;
  }
  
  .footer-right {
    flex: 30%;
    font-weight: bolder;
    border-left: 2px dotted white;
  }
  
  .footer-right ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .footer-right ul li {
    color: #fff;
  }
  
  .footer-right ul li {
    font-weight: 400;
    color: #fff;
    line-height: 28px;
  }
  
  .footer-right ul li a {
    color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    line-height: 36px;
    font-size: 15px;
    text-transform: capitalize;
    text-decoration: none;
  }
  
  .footer-right ul li a:hover {
    color: tomato;
  }

  @media (max-width: 600px) {
    .footer {
      flex-direction: column !important;
    }

    .footer-left {
      margin-top:80px;
    }

    .footer-right {
      flex-direction: row !important;
      border-left:none !important;
      border-top:2px dotted white;
      margin-top:2rem;
      margin-bottom:2rem;
    }
  }