.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 16px 0;
}
.header__body {
  border-radius: 100px;
  border: 0.5px solid rgba(240, 241, 241, 0.5);
  padding: 0 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background-color: #000000;
}
.header__logo {
  /* color: #fff;
  text-align: center;
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  padding: 10px 0;
  transition: all 0.3s ease 0s;
  display: flex;
  position: relative;
  z-index: 50;
  &:hover {
      color: #e5f355;
  } */
}
.header__logo img {
  width: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .header__menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    padding: 80px 0 16px 0;
  }
  .header__menu._active {
    opacity: 1;
    visibility: visible;
  }
}
.header__btn-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  position: relative;
}
@media (min-width: 993px) {
  .header__btn-menu {
    display: none;
  }
}
.header__btn-menu span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  display: flex;
  transition: all 0.3s ease 0s;
}
.header__btn-menu .close {
  opacity: 0;
  visibility: hidden;
}
.header__btn-menu._active .open {
  opacity: 0;
  visibility: hidden;
}
.header__btn-menu._active .close {
  opacity: 1;
  visibility: visible;
}
.header__contacts {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 65px 0 0 0;
}
@media (min-width: 993px) {
  .header__contacts {
    display: none;
  }
}
.header__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  font-size: 12px;
  font-family: "Manrope", sans-serif;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
}
.header__contact-link {
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: capitalize;
}
.header__list {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 992px) {
  .header__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}
.header__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  color: #fff;
  text-align: center;
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  transition: all 0.3s ease 0s;
}
.header__link:hover {
  color: #e5f355;
}
@media (max-width: 992px) {
  .header__link {
    font-size: 40px;
    line-height: normal;
    text-align: start;
    padding: 0px 20px;
  }
}/*# sourceMappingURL=header.css.map */