/*-----------------
* palette
* ----------------
*
*/

/******** Footer *******/

footer {
  background: #000;
  color: #fff;
  padding: 60px 0;
    a:hover{
    color: rgba(255,255,255,0.6);
  }

}

.footer-larger {
  font-size: 32px;
  font-weight: 800;
}

.credits {
  text-align: right;
  font-size: 12px;

  span {
    margin: 0 5px;
  }

  a {
    color: #fff;
  }

    a:hover{
    color: rgba(255,255,255,0.6);
  }


  img {
    width: 175px;
  }
}

.copy-wrap {
  display: flex;
  justify-content: flex-end;
  margin: 15px 0 -10px;
}

/******** Responsive ***********/

/* XXL > 1400 */

/* XL */
@media (max-width: 1400px) {}

/* L */
@media (max-width: 1200px) {}

/* M */
@media (max-width: 992px) {
  .copy-wrap {
    display: flex;
    justify-content: flex-end;
    margin: 15px 0 -10px;
    flex-direction: column;
    span{
      display: none;
    }
    .copyright{
      margin-bottom: 5px;
    }
  }
}

/* S */
@media (max-width: 768px) {
  .credits {
    text-align: left;
    font-size: 12px;
    margin: 30px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* XS */
@media (max-width: 576px) {}