/* ------------------------------------------FOOTER---------------------------------------- */

footer {
  display: flex;

  height: 250px;
  justify-content: space-between;
  background: #242424;
  flex-flow: wrap;
  text-align: center;
  align-items: center;

  width: 100%;
}
/* -------------------address */
.address {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  position: relative;
  text-align: center;
  flex-basis: 100%;
  line-height: 20px;
}
.copyright,
.addressPara {
  padding-left: 0px;
}
.copyright {
  padding-top: 20px;
  position: absoulte;
  display: block;
}
.copyright a {
  color: white;
}
.addressPara {
  color: #969696;
  padding-top: 20px;
}


/* ------___--------------social_links */
.social_links {
  background-color: transparent;
  font-size: 14px;
  display: flex;
  flex-flow: row;
  flex-basis: 100%;
  height: 60px;
  justify-content: center;
  text-align: center;
  align-items: flex-start;
  line-height: 20px;
}
.social_links ul {
  list-style: none;
  display: flex;
}
.social_links li a {
  display: block;
  text-decoration: none;
  text-align: center;
  color: white;
  padding: 0px 10px;
}
.social_links li a:hover {
  color: lightgrey;
}
.social_links li a {
  display: flex;
  justify-content: start;
}
.social_icons {
  flex: 0 0 28px;
}
.social_text {
  flex: 0 0 30px;
  font-size: 0px;
}

/* ------------------------------media_queries */

@media screen and (min-width: 600px) {
  
  footer {
        height: 300px;
  }
  .address {
    flex-basis: 25%;
    text-align: left;
    margin-left: 40px;
    line-height: 20px;
  }
  .copyright {
    padding-top: 0px;
  }
  .social_links {
    flex-basis: 25%;
    font-size: 16px;
    align-items: center;
    line-height: 20px;
  }

  .social_links ul {
    flex-direction: column;
    list-style: none;
  }
  .social_links ul li a {
    padding: 5px;
    font-family: "Raleway";
  }
  .social_links li a:hover {
    color: lightgrey;
  }

  .social_text {
    font-size: 16px;
  }
}
