.cm-nav {
  position: fixed;
  top: 0;
  padding: 10px 15px;
  box-sizing: border-box;
  height: fit-content;
  background-color: transparent;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.cm-site-title {
  color: white;
}

.cm-site-title>a {
  text-decoration: none;
  font-family: 'Futura LT Heavy';
}

/* Burger */
.nav-toggle {
  --line: 3px;
  --w: 50px;
  border-radius: 25px;
  background-color: rgba(226, 226, 226, .55);

  width: var(--w);
  height: var(--w);
  border: 0;
  padding: 15px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cm-cta-contact {
  text-decoration: none;
}

.cm-nav.scrolled {
  background: rgba(226, 226, 226, .55);
  backdrop-filter: blur(6px);
  padding: 0 15px
}

.cm-nav.scrolled .cm-site-title>a,
.cm-nav.scrolled .cm-cta-contact {
  color: var(--primary);
}

.cm-nav.scrolled .nav-toggle {
  background-color: transparent;
}

.nav-toggle .bar {
  width: 100%;
  height: var(--line);
  background: var(--primary);
  display: block;
  transition: transform .5s ease, opacity .5s ease, background .5s ease;
  transform-origin: center;
  z-index: 1000;

}

/* X state */
.nav-toggle.is-open .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.is-open .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #004B9A;
  color: #fff;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  display: flex;
  flex-wrap: wrap;
  padding: 100px 4% 50px 4%;
}

.primary-menu {
  flex: 1 0 40%;
  height: 100%;
  display: flex;
  min-width: 200px;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.service-menu {
  flex: 1 0 55%;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  text-transform: uppercase;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Primary menu */
.primary-menu a {
  width: 82%;
}

.menu-img {
  width: 100%;
}

.menu {
  padding-left: 0px;
  margin: 0px;
}

.menu-item {
  list-style: none;
  margin-top: 25px;
}

.menu-item a {
  font-size: clamp(22px, 1.8vw, 34px);
  text-decoration: none;
}

.menu-service-container {
  text-align: right;
  margin-bottom: 55px;
}

.menu-service-container h3 {
  margin: 0px;
}

.menu-service-container h3 a {
  text-decoration: none;
  font-size: clamp(12px, 1.5vw, 22px);
  font-family: 'Futura LT Heavy';
}

.menu-service-desc {
  font-family: 'Futura LT light';
  font-size: clamp(12px, 1.1vw, 22px);
  margin: 10px 0px;
}

.service-menu img {
  width: auto;
  height: 100px;
}

@media (max-width: 548px) {

  .nav-overlay {
    display: flex;
    flex-direction: column-reverse;
    justify-content: start;
    padding: 0px;
    padding-top: 100px;
    overflow-x: scroll;
  }

  .menu-service-desc {
    display: none;
  }

  .service-menu img,
  .menu-img {
    display: none;
  }

  .service-menu {
    width: 100%;
    flex: unset;
    height: unset;
  }

  .service-menu div,
  .primary-menu {
    width: 100%;
    text-transform: uppercase;
    text-align: left;
    align-items: center;
  }

  .primary-menu {
    flex: unset;
    height: unset;
  }

  .menu-service-container h3 a,
  .menu-item a {
    font-family: 'Futura LT Heavy';
    font-size: 15px;
    line-height: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 100%;
    width: 100%;
  }

  .menu-service-container {
    margin: 0px;
  }

  #menu-menu-principal li,
  .menu-service-container {
    box-sizing: border-box;
    display: flex;
    border-top: 1px solid var(--white);
    width: 100%;
    height: fit-content;
    padding: 15px 20px;
    align-items: center;
    margin-top: 0px;
  }

  .menu-menu-principal-container {
    width: 100%;
  }
}