.alternate {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  footer {
    position: relative;
    width: 90%;
    height: auto;
    padding: 50px 100px;
    background: rgb(3, 3, 3);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-family: 'Poppins', sans-serif;
  }
  
  footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    font-family: 'Poppins', sans-serif;
  }
  
  footer .container .sec {
    margin-right: 30px;
    font-family: 'Poppins', sans-serif;
  }
  
  footer .container .sec.aboutus {
    width: 40%;
    font-family: 'Poppins', sans-serif;
  }
  
  footer .container h2 {
    position: relative;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
  }
  
  footer .container h2:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #f00;
  }
  
  footer p {
    color: #999;
    font-family: 'Poppins', sans-serif;
  }
  
  .sci {
    margin-top: 20px;
    display: flex;
  }
  
  .sci li {
    list-style: none;
  }
  
  .sci li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.2s;
  }
  
  .sci li .fb:hover {
    background: #4267B2;
  }
  
  .sci li .insta:hover {
    background: #f13977;
  }
  
  .sci li .tweet:hover {
    background: #1DA1F2;
  }
  
  .sci li .whats:hover {
    background: #03f44b;
  }
  
  .sci li a .fab {
    color: #FFFFFF;
    font-size: 20px;
  }
  
  .quickLinks {
    position: relative;
    width: 25%;
  }
  
  .quickLinks ul li {
    list-style: none;
  }
  
  .quickLinks ul li a {
    color: #999;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
    transition: 0.2s;
  }
  
  .quickLinks ul li a:hover {
    color: #fff;
  }
  
  .contact {
    width: calc(35% - 60px);
    margin-right: 0 !important;
  }
  
  .contact .info {
    position: relative;
  }
  
  .contact .info li {
    display: flex;
    margin-bottom: 16px;
  }
  
  .contact .info li span:nth-child(1) {
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
  }
  
  .contact .info li span {
    color: #999;
  }
  
  .contact .info li a {
    color: #999;
    text-decoration: none;
    transition: 0.2s;
  }
  
  .contact .info li a:hover {
    color: #fff;
  }
  
  .copyrightedText {
    background: #181818;
    padding: 8px 100px;
    text-align: center;
    color: #999;
  }
  
  /*Footer Media Queries*/
  
  @media (max-width: 991px) {
    footer {
      padding: 40px;
    }
    footer .container {
      flex-direction: column;
    }
    footer .container .sec {
      margin-right: 0;
      margin-bottom: 40px;
    }
    footer .container .sec.aboutus, .quickLinks, .contact {
      width: 100%;
    }
    .copyrightedText {
      padding: 8px 40px;
    }
  }