/* FOOTER */
footer {
  color: white;
  background: #000D;
  padding: 50px 0; 
}
footer .footer-wrapper {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap-reverse;
}
footer .social-links img {
  width: 22px;
}
footer .branch-logo {
  width: 180px;
  color: #fff;
}
footer .social-links a {
  margin-right: 10px;
  font-size: 22px;
  text-decoration: none;
}
footer .branch-right h1 {
  font-size: 26px;
}
footer .newsletter-border {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #33b5ed, #15749d);
  margin: 2px;
}
footer .newsletter-signup {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer input::placeholder {
  color: white !important;
}
footer .email-input {
  flex: 1;
  padding: 18px 40px;
  font-size: 16px;
  background: #343A40;
  border: none;
  font-weight: 700;
  outline: none;
  border-radius: 5px;
  min-width: 260px;
  margin-top: 20px;
  color: white;
}
footer .branch-phones{
    color: white;
}
footer .submit-btn {
  margin-top: 20px;
  padding: 18px 40px;
  font-size: 16px;
  color: #f1f1f1;
  background: linear-gradient(to right, #33b5ed, #2788b2);
  border: none;
  font-weight: 700;
  outline: none;
  border-radius: 5px;
  margin-left: 20px;
  cursor: pointer;
  transition: opacity .3s linear;    
}
footer .submit-btn:hover {
  opacity: .7;
}
footer .branch-title{
    color:white;
}
footer .location-icon{
    width:20px;
    color: white;
}
footer .phone-icon{
    width: 20px;
    color: white;
}
footer .mail-icon{
    width: 20px;
    color: white;
}
footer .branch-email{
    color: white;
}
footer .location-link{
    color: white;
}
footer .connect-title{color: white;}
footer .social-icon{width: 20px;}
footer .newsletter-title{color: white;}
footer .newsletter-text{color: white;}
footer .copyright-text{color: white;}

/* PROPERTIES FOR MAKING WEBSITE RESPONSIVE */
@media screen and (max-width: 960px) {
  .footer-wrapper {
      max-width: 600px;
  }
  .branch-right {
      width: 100%;
      margin-bottom: 60px;
  }
  .branch-left {
      width: 100%;
      text-align: center;
  }
  .social-links {
      display: flex;
      justify-content: center;
  }
  .branch-logo {
      transition: 1s;
      margin-left: 30%;
  }
}
