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

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

.footer-fb {
  svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    margin-left: 10px;
  }

  svg:hover {
    fill: #FFD800;
  }
}

.footer-logo--wrap {
  display: flex;
  align-items: center;
}

.logo-wrap {
  display: flex;
  justify-content: center;

  img {
    height: 80px;
    object-fit: contain;
    width: 100%;
    margin: auto;
    text-align: center;
  }
}

.footer-title {
  color: #151515;
  font-weight: var(--textFontWeight);
  margin-top: 0;
  font-size: 22px;
  color: #FFD800;
}

footer {
  color: #fff;

  .bottom-wrap {
    background: #002B7C;
  }

  hr {
    background: #FFD800;
    opacity: 1;
  }

  img.company-logo {
    width: 200px;
    margin-left: 0;
  }

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

    li {
      margin-top: 10px;
    }

    a {
      color: #fff;
    }

    a:hover {
      color: #FFD800;
    }
  }
}

h3 {
  color: #FFD800;
  border-bottom: 1px solid #FFD800;
  padding-bottom: 7.5px;
  margin-bottom: 15px;
}

.contact-details {
  a {
    color: #fff;
  }

  a:hover {
    color: #FFD800;
  }

  div {
    color: #FFD800;
    font-weight: 700;
  }
}


ul.contact-details.lower {
  display: flex;
  align-items: center;
  margin-bottom: 0;

  li {
    margin-right: 15px;
  }
}

ul.contact-details.lower li:nth-child(2) {
  margin: 0;
}

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

  span {
    margin: 0 10px;
  }

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

  a:hover {
    color: #fff;
  }
}

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

/* XXL > 1400 */

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

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

/* M */
@media (max-width: 992px) {
  ul.contact-details.lower {
    padding-bottom: 30px;
  }
}

/* S */
@media (max-width: 768px) {
  .lower-footer--col {
    margin-top: 30px;
  }
}

/* XS */
@media (max-width: 576px) {
  .credits {
    display: flex;
    justify-content: center;
    font-size: 14px;
    flex-direction: column;
    align-items: center;

    span {
      display: none;
    }

    .copyright {
      padding-bottom: 2.5px;
    }
  }

  ul.contact-details.lower {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
    flex-direction: column;

    li:nth-child(2) {
      padding-top: 15px;
    }
  }

  .footer-logo--wrap {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

}