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

/******** Header *********/

header#header {
  background: #164095;
  width: 100%;
  padding: 30px 0;
  color: #fff;
}

img.company-logo {
  width: 250px;
}

.post-rel {
  position: relative;
}

ul.contact-details.contact-details--header {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  font-size: 22px;
  width: fit-content;
  align-content: flex-end;
  float: right;

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

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

  li:nth-child(2) {
    margin: 5px 0 0;
  }
}

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

/* XXL > 1400 */

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

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

/* M */
@media (max-width: 992px) {
  img.company-logo {
    width: 175px;
  }

  ul.contact-details.contact-details--header {
    font-size: 18px;
  }
}

/* S */
@media (max-width: 768px) {
  a.company-logo-link {
    text-align: center;
    margin: auto;
    display: block;
  }

  ul.contact-details.contact-details--header {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    font-size: 19px;
    width: 100%;
    align-content: flex-end;
    float: right;
    align-items: flex-start;
    margin-top: 0px;
  }

  header#header {
    background: #164095;
    width: 100%;
    padding: 30px 30px;
    color: #fff;
  }

}

/* XS */
@media (max-width: 576px) {
    ul.contact-details.contact-details--header {
        margin-top: 15px;
        text-align: center;
        display: flex;
        align-items: center;
    }
}