body {
  font-family: 'Kumbh Sans', sans-serif;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 38px;
  padding: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  background-color: #ff6900;
  transition: height 0.15s ease, font-size 0.15s ease;
}

.header-space {
  width: 100%;
  height: 100px;
  background: transparent;
}

.container-menu-desktop,
.wrap-menu-desktop {
  position: fixed;
  top: 38px;
  left: 0;
  width: 100%;
  height: 62px;
  transition: top 0.15s ease, height 0.15s ease;
}

.container-menu-desktop {
  z-index: 1100;
}

.wrap-menu-desktop {
  box-sizing: border-box;
  border: 0;
  border-bottom: 1px solid #eee;
  background-color: #fff;
  box-shadow: none;
}

body.header-compact .top-bar {
  height: 24px;
  font-size: 11px;
}

body.header-compact .container-menu-desktop,
body.header-compact .wrap-menu-desktop {
  top: 24px;
  height: 44px;
}

body.header-compact .wrap-menu-desktop {
  box-shadow: none;
}

.limiter-menu-desktop {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  flex: 0 0 230px;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  height: 100%;
  margin-right: auto;
  overflow: hidden;
  padding: 6px 0;
  transition: flex-basis 0.15s ease;
}

.logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 220px;
  max-height: 100%;
  object-fit: contain;
  transition: max-width 0.15s ease;
}

body.header-compact .logo {
  flex-basis: 180px;
}

body.header-compact .logo img {
  content: url("../images/icons/GL_Chile%20Spa@2x.png");
  max-width: 170px;
}

.menu-desktop,
.main-menu,
.main-menu > li,
.main-menu > li > a {
  display: flex;
  align-items: center;
  height: 100%;
}

.menu-desktop {
  justify-content: flex-end;
  width: auto;
}

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

.main-menu > li {
  position: relative;
  margin: 0 20px 0 0;
  padding: 0;
}

.main-menu > li > a {
  padding: 0;
  color: #000;
  font-family: Poppins-Medium;
  font-size: 14px;
  text-decoration: none;
  transition: font-size 0.15s ease;
}

body.header-compact .main-menu > li > a {
  font-size: 12px;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sub-menu > li {
  margin: 0;
}

.sub-menu > li > a {
  display: block;
  padding: 10px 20px;
  color: #000;
  text-decoration: none;
}

.main-menu > li:hover .sub-menu {
  display: block;
}

@media (max-width: 1199px) {
  .logo {
    flex-basis: 185px;
  }

  .logo img {
    max-width: 175px;
  }

  .main-menu > li {
    margin-right: 12px;
  }
}

@media (max-width: 991px) {
  .top-bar,
  .container-menu-desktop {
    display: none;
  }

  .header-space {
    height: 0;
  }
}
