.footer {
  background-color: #112929;
  color: white;
  padding: 50px 15px 15px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.footer-details {
  margin-top: 30px;
}

.footer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
}

.footer-wrapper >div {
    display: flex;
    flex-direction: column;
}

.footer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
}

.footer-wrapper>div >a {
  color: white;
  text-decoration: none;
  margin-top: 5px;
}

.footer-wrapper >div >a &:link,&:visited,&:hover,&:active {
  color: white;
  text-decoration: none;    
}

.footer-title {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

@media (max-width: 960px) {
  .footer {
    background-color: #112929;
    color: white;
    padding: 40px 15px 15px 30px;
  }

  .footer-wrapper {
    flex-direction: column;
  }

  .footer-wrapper  >div {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2C4545;
  }
  .footer-wrapper >:last-child {
    border: none;
  }
}