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

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

.logo-wrap.lower {
  margin-bottom: 20px;
  justify-content: flex-start;

  img {
    margin-right: 15px;
    height: 100px;
  }
}

footer {
  position: relative;

  .logo-wrap-footer {
    position: relative;
    bottom: -55px;
  }

  .top-wrap {
    background: #171717;
    color: #fff;
    padding-top: 85px;

    h1,
    h2,
    h3 {
      color: #fff;
      margin-bottom: 20px;
    }
  }

  .text-center {
    text-align: center;
  }

  .menu {
    padding: 0;
    margin: 0;
    list-style: none;

    li {
      margin: 10px 0;

      a {
        color: #fff;
      }
    }
  }

  .contact-details {
    margin-top: 45px;

    li:last-child {
      margin-left: -15px;
    }
  }
}

.logo-wrap {
  img {
    height: 110px;
    object-fit: contain !important;
  }
}

.contact-details--wrap {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.contact-details--wrap--upper {
  margin-right: 5px;
}

.contact-details {
  svg {
    width: 20px;
    height: 20px;
  }

  li {
    display: flex;

    a {
      color: #fff;
    }
  }

  .icon {
    width: 40px;
    height: 40px;
    background: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .icon:after {
    content: "";
    position: absolute;
    border: 1px solid #000;
    z-index: 999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: calc(100% - 5px);
    width: calc(100% - 5px);
  }
}

.credits {
  display: flex;
  justify-content: center;
  font-size: 14px;
  color: #000;

  p {
    padding: 0;
    margin: 0;
  }

  span {
    margin: 0 10px;
  }

  a {
    font-weight: 700;
    color: #000;
  }
}

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

/* XXL > 1400 */

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

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

/* M */
@media (max-width: 992px) {}

/* S */
@media (max-width: 768px) {}

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