.header {
  display: flex;
  align-items: center;
  height: 70px;
  margin: 0 auto;
  flex: 1;
  gap: 30px;
}

.header .header--logo {
  max-height: 54px;
  padding: 8px 0;
  width: auto !important;
}

.header ul.header--list-menu-top {
  flex: 1 1;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.header ul.header--list-menu-top > li,
.header ul.header--list-menu-top > li > a {
  text-transform: uppercase;
  color: rgba(102, 102, 102, 0.85);
  list-style: none;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}

.header .header--contact {
  width: 210px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f46d1d;
}

.header .header--contact a {
  color: #f46d1d;
  text-decoration: inherit;
}

.header .header--contact i {
  font-size: 24px;
}

.header-mobile {
  display: none;
  position: relative;
  align-items: center;
  height: 70px;
  flex: 1;
}

.header-mobile--line {
  height: 2px;
  width: 24px;
  background: black;
  border-radius: 2px;
  margin-top: 6px;
}

.header-mobile--line:first-of-type {
  margin-top: 0;
}

.header-mobile--logo {
  height: 65px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: auto !important;
}

.header-mobile--drawer {
  display: none;
  width: 100%;
  position: fixed;
  height: 100%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.4);
}

.header-mobile--drawer--menu {
  width: 0;
  background-color: white;
  height: 100%;
  transition: all 0.3s;
  overflow: hidden;
}

.header-mobile--drawer--menu--content {
  min-width: max-content;
  background-color: white;
  height: 100%;
  transition: all 0.3s;
  overflow: hidden;
  padding: 24px 0;
  transform: translateX(-100%);
}

.header-mobile--icon-close-x {
  width: 40px;
  height: 40px;
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
}

.header-mobile--drawer--menu--content > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  height: calc(100% - 45px);
  overflow: auto;
}

.header-mobile--drawer--menu--content > ul > li {
  border-bottom: 1px solid #ececec;
  display: flex;
  width: 100%;
}

.header-mobile--drawer--menu--content > ul > li > a {
  padding: 12px 0 12px 20px;
  color: rgba(102, 102, 102, 0.85);
  text-decoration: none;
  font-size: 0.8em;
  font-weight: 700;
  text-transform: uppercase;
}

@media only screen and (max-width: 840px) {
  .header {
    display: none;
  }
  .header-mobile {
    display: flex;
  }
}
