footer {
    background: #bc1d23;
    padding-top: 50px;
    color: #fff;
  }
  .container {
    width: 1140px;
    margin: auto;
    display: flex;
    justify-content: center;
  }
  .footer-content {
    width: 33.3%;
  }
  h3 {
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
  }
  .footer-content p {
    width: 190px;
    margin: auto;
    padding: 7px;
  }
  .footer-content ul {
    text-align: center;
  }
  .list {
    padding: 0;
  }
  .list li {
    width: auto;
    text-align: center;
    list-style-type: none;
    padding: 7px;
    position: relative;
  }
  .list li::before {
    content: "";
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 100%;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition-duration: 0.5s;
  }
  .list li:hover::before {
    width: 70px;
  }
  .social-icons {
    text-align: center;
    padding: 0;
  }
  .social-icons li {
    display: inline-block;
    text-align: center;
    padding: 5px;
  }
  .social-icons i {
    color: white;
    font-size: 25px;
  }
  a {
    color: #fff;
    text-decoration: none;
  }
  a:hover {
    color: #ffffff;
  }
  .social-icons i:hover {
    color: #ffffff;
  }
  .bottom-bar {
    background: #ffffff;
    text-align: center;
    padding: 10px 0;
    margin-top: 50px;
  }
  .bottom-bar p {
    color: #bc1d23;
    margin: 0;
    font-size: 16px;
    padding: 7px;
  }
  @media (min-width: 350px) and (max-width: 390px){
    footer{
      padding-top: 20px;
    }
    h3{
      margin-bottom: 0px;
    }
    .container{
    width: 100%;
    margin: auto;
    display: grid;
    justify-content: center;
    }
    .footer-content{
      border: px solid #fff;
      width: 350px;
      margin-bottom: 25px;
    }
    .footer-content p {
      border: px solid #fff;
      width: 300px;
      margin: auto;
      padding: 7px;
      text-align: center;
    }
}
  @media (min-width: 390px) and (max-width: 1000px){
    footer{
      padding-top: 20px;
    }
    h3{
      margin-bottom: 0px;
    }
    .container{
    width: 100%;
    margin: auto;
    display: grid;
    justify-content: center;
    }
    .footer-content{
      border: px solid #fff;
      width: 350px;
      margin-bottom: 25px;
    }
    .footer-content p {
      border: px solid #fff;
      width: 300px;
      margin: auto;
      padding: 7px;
      text-align: center;
    }
}
  