.footer {
  width: 100%;
  height: 70px;
  background-color: white;
  font-family: 'gothambook';
  font-size: 12px;
  color: #000;
  border-top: 1px solid #db131d;
  overflow: hidden;
}

.footer a{
  color: #000;
  text-decoration: none;
  transition: .3s;
}

.footer a:hover {
  color: #db131d;
}

.inner-footer {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;

  padding: 30px 0 0 0;
}

.footer-text {
  float: left;
  padding:0 0 0 50px;
}

.footer-link-box {
  float: right;
  padding:0 50px 0 0;
}

@media only screen and (max-width: 480px) {
  
  .footer {
    font-size: 10px;
    color: #000;
    border-top: 1px solid #db131d;
    line-height: 14px;
  }



/*  .footer-text {
    float: none;
    display: none;
    text-align: left;
    padding: 0;
  }*/



}

@media only screen and (max-width: 1500px) {
    .inner-footer {
    width: 80%;
    padding: 10px 0 0 0;
  }
  
  .footer-text {
    float: none;
    display: block;
    text-align: center;
    width: 100%;
  }
  
    .footer-link-box {
    float: none;
    display: block;
    text-align: center;
    padding: 20px 0 0 0;
  }
}

@media only screen and (max-width: 1360px) {
  .footer {
    width: 100%;
    background-color: white;
    font-family: 'gothambook';
    font-size: 10px;
    color: #000;
    border-top: 1px solid #db131d;
  }
}


