.header {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.header-top {
  display: flex;
  justify-content: flex-end;
  padding-top: 12px;
}
.header-top__signBtn {
  color: var(--grey);
  font-size: 18px;
  font-weight: 500;
}
.header-top__signBtn.signUp {
  margin-right: 40px;
}
.header-top__signBtn:last-child {
  margin-right: 0px;
}
.header-sec {
  margin-bottom: 48px;
}
.header__logo {
  width: 159px;
  height: 43px;
  margin-right: 20px;
}
.header__logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
.header__preopen {
  width: 300px;
  padding: 14px 27px;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  margin-right: 36px;
  border-radius: 15px;
}
.header__preopen.mob {
  display: none;
}
.header-nav {
  display: flex;
  align-items: center;
}
.header-nav__item {
  display: block;
  font-size: 14px;
  color: var(--black);
  line-height: 24px;
}
.header-nav__item:not(:last-child) {
  margin-right: 40px;
}
.header__join {
  margin-left: auto;
  min-width: -moz-max-content;
  min-width: max-content;
  line-height: 24px;
  padding: 10px 16px;
  min-width: 120px;
  text-align: center;
}

@media (max-width: 1280px) {
  .header-nav__item:not(:last-child) {
    margin-right: 15px;
  }
  .header__logo {
    width: 120px;
    height: auto;
  }
  .header__logo img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header__preopen {
    width: 200px;
    font-size: 14px;
    padding: 10px 18px;
  }
  .header__join {
    padding: 10px 10px;
    min-width: 100px;
  }
}
.burger-btn {
  display: none;
}

.burger-menu {
  display: none;
}

@media (max-width: 980px) {
  .header-nav {
    display: none;
  }
  .header-top {
    display: none;
  }
  .header__join {
    display: none;
  }
  .header__preopen {
    width: 320px;
  }
  .burger-btn {
    display: block;
    margin-left: auto;
  }
  .burger-menu {
    display: flex;
    flex-direction: column;
    padding: 76px 16px 16px 16px;
    position: fixed;
    left: 0;
    top: 0;
    transform: translateY(-200%);
    height: 100vh;
    width: 100vw;
    transition: all 0.3s ease;
    background: #fff;
    z-index: 999;
  }
  .burger-menu.active {
    transform: none;
  }
  .burger-menu__close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 16px;
    height: 16px;
  }
  .burger-menu__close img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .burger-menu__item {
    width: 100%;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
  }
  .burger-menu__item:not(:last-child) {
    margin-bottom: 36px;
  }
}
.header__logo-img.mob {
  display: none;
}

@media (max-width: 640px) {
  .header__preopen {
    padding: 2px 16px;
    font-size: 12px;
    max-width: 204px;
    margin-right: auto;
    margin-left: 0px;
    border-radius: 10px;
  }
  .header__logo {
    width: 35px;
    height: 35px;
    min-width: 35px;
    margin-right: 27px;
  }
  .header__logo-img.mob {
    display: block;
  }
  .header__logo-img.desk {
    display: none;
  }
}
.burger-menu__item-join {
  max-width: 177px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 480px) {
  .header__preopen {
    display: none;
  }
  .header__preopen.mob {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0px 24px;
    max-width: 100%;
    flex: 1;
    height: 38px;
  }
  .burger-btn {
    margin-left: auto;
  }
  .header__logo {
    margin-right: 0px;
  }
}/*# sourceMappingURL=header.css.map */