/* 
@media screen and (min-width: 1200px) { 
    .footer {
        width: 100%;
        height: 400px;
        background-color: rgb(151, 151, 151);
    }
    
    .footer-c {
        width: 1200px;
        margin: 0 auto;
        color: #fff;
    }
    
    .footer-c hr {
        background-color: #a1a1a1;
        margin: 40px 0;
    }
    
    .footer-c h2 {
        font-size: 24px;
        font-weight: 400;
        height: 100px;
        line-height: 160px;
    }
    
    .footer-c p {
        font-weight: 600;
        font-size: 14px;
        margin: 10px 0;
    }
    
    .footer-b {
        display: flex;
        justify-content: center;
    }
    
    .footer-b span {
        color: #fff;
        margin-left: 10px;
    }
  }

  @media screen and (min-width: 992px) and (max-width: 1200px) { 
    .footer {
        width: 100%;
        height: 300px;
        background-color: rgb(151, 151, 151);
    }
    
    .footer-c {
        width: 992px;
        margin: 0 auto;
        color: #fff;
    }
    
    .footer-c hr {
        background-color: #a1a1a1;
        margin: 20px 0;
    }
    
    .footer-c h2 {
        font-size: 20px;
        font-weight: 400;
        height: 80px;
        line-height: 140px;
    }
    
    .footer-c p {
        font-weight: 600;
        font-size: 14px;
        margin: 10px 0;
    }
    
    .footer-b {
        display: flex;
        justify-content: center;
    }
    
    .footer-b span {
        color: #fff;
        margin-left: 10px;
    }
  }
  @media screen and (min-width: 768px) and (max-width: 992px) { 
    .footer {
        width: 100%;
        height: 300px;
        background-color: rgb(151, 151, 151);
    }
    
    .footer-c {
        width: 768px;
        margin: 0 auto;
        color: #fff;
    }
    
    .footer-c hr {
        background-color: #a1a1a1;
        margin: 20px 0;
    }
    
    .footer-c h2 {
        font-size: 20px;
        font-weight: 400;
        height: 80px;
        line-height: 120px;
    }
    
    .footer-c p {
        font-weight: 600;
        font-size: 13px;
        margin: 10px 0;
    }
    
    .footer-b {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .footer-b span {
        color: #fff;
        margin-left: 10px;
    }
  }
  */

.footer {
    width: 100%;
    height: 4rem;
    background-color: rgb(151, 151, 151);
}

.footer-c {
    width: 80%;
    margin: 0 auto;
    color: #fff;
}

.footer-c hr {
    background-color: #a1a1a1;
    margin: 40px 0;
}

.footer-c h2 {
    font-size: 24px;
    font-weight: 400;
    height: 100px;
    line-height: 160px;
}

.footer-c p {
    font-weight: 600;
    font-size: 14px;
    margin: 10px 0;
}

.footer-b {
    width: 80%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* background-color: red; */
    font-size: 16px;
}

.footer-b span {
    color: #fff;
    margin-left: 10px;
}