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

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

header#header {
  position: fixed;
  z-index: 9999999;
  width: 100%;
  background: rgba(2, 37, 79, 0.8);

  img.company-logo {
    width: 175px;
    padding: 15px 0;
  }
}

.header-wrap {
  .header-bars-wrap {
    flex-direction: column;
    align-content: flex-end;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
  }
}

.logo-line--wrap {
  display: flex;

  img.line-header {
    height: 100px;
    margin-left: 15px;
  }
}

.full-left--header {
  display: flex;
}


.locations-header {
  font-size: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
  display: flex;
  align-items: center;
  text-transform: uppercase;

  strong {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: -5px;
  }

  li {
    display: flex;
    margin-left: 15px;
    flex-direction: column;
  }

  a {
    color: #fff;
  }

  a:hover {
    color: #EF3425;
  }
}


.social-ul {
  list-style: none;
  padding: 0;
  margin: 0;

  li {
    margin-right: 10px;
  }

  svg {
    width: 20px;
    fill: #fff;
  }
}

.slide-menu--wrap {
  width: 100%;
}

.header-title {
  font-weight: var(--textFontWeight);
  margin-top: 0;
  text-transform: uppercase;
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
}

.slider-menu-items.top {
  background: #022147;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  flex-direction: column;

  a {
    text-transform: uppercase;
  }
}

.slider-menu-items.bottom {
  padding: 30px;
}

header {
  ul.social-ul {
    display: flex;
    justify-content: flex-start;
    margin-top: 15px !important;

    li {
      width: auto !important;
      margin-right: 15px !important;

      a {
        border-radius: 50%;
        width: 30px !important;
        height: 30px !important;
        display: flex;
        align-items: center;
        justify-content: center;

        svg {
          width: 20px !important;
          height: 20px !important;
        }
      }
    }

    li:nth-child(1) {
      a {
        background: #E1306C;
      }

      a:hover {
        background-color: #EF3425 !important;
      }
    }

    li:nth-child(2) {
      a {
        background: #1877F2;
      }

      a:hover {
        background-color: #EF3425 !important;
      }
    }

    li:nth-child(3) {
      a {
        background: #4682B4;
      }

      a:hover {
        background-color: #EF3425 !important;
      }
    }
  }
}

#xs-menu-wrap {
  ul#menu-primary-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;

    li {
      margin: 0;

      a {
        font-weight: 200;
      }
    }
  }

  .header-bars-wrap {
    padding: 0;

    svg {
      width: 30px;
      height: 30px;
      fill: #fff;
      border: 2px solid #fff;
      border-radius: 50%;
      padding: 5px;
    }
  }
}

.page-template-template-downloads,
.page-template-template-basic,
.single-post {
  header#header {
    position: relative;
    z-index: 9999999;
    width: 100%;
    background: rgba(2, 37, 79, 1);
  }
}



.header-wrap--menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;

  .header-wrap--inner {
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center
  }

  .text {
    color: #fff;
  }
}

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

/* XXL > 1400 */

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

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

/* M */
@media (max-width: 992px) {
  header#header {
    img.company-logo {
      width: 135px;
      padding: 15px 0;
    }
  }

  .logo-line--wrap {
    img.line-header {
      height: 83px;
      margin-left: 15px;
      width: 40px;
    }
  }

  .locations-header {
    font-size: 16px;
  }

  .locations-header {
    strong {
      font-size: 14px;
      font-weight: 900;
      margin-bottom: -5px;
    }

    a {
      color: #fff;
      font-size: 14px;
    }

    li {
      display: flex;
      margin-left: 10px;
      flex-direction: column;
    }
  }
}

/* S */
@media (max-width: 768px) {
  .locations-header {
    display: none;
  }
}

/* XS */
@media (max-width: 576px) {
  header#header {
    img.company-logo {
      width: 105px;
      padding: 15px 0;
    }
  }

  .header-wrap--menu {
    .header-wrap--inner {
      border: 1px solid #fff;
      border-radius: 10px;
      padding: 5px;
      display: flex;
      align-items: center;
    }
  }

  .logo-line--wrap {
    img.line-header {
      height: 70px;
      margin-left: 15px;
      width: 30px;
    }
  }
}