.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: white;
  width: 100%;
  display: flex;
  justify-content: center;
}
.header__search-line {
  z-index: -1;
  opacity: 0;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  height: 64%;
  width: 40%;
  align-items: center;
  border: 1px solid rgba(190, 195, 199, 0.3);
  border-radius: 10px;
  background-color: white;
  margin-right: 27px;
  margin-top: 17px;
}
.header__search_blue {
  margin-top: 1px;
}
.header__close-menu {
  display: none;
}
.header__search {
  cursor: pointer;
  height: 24px;
  width: 24px;
  background-image: url(../assets/icons/search.svg);
  opacity: 1;
  transition: opacity 0.3s;
  border: none;
  background-color: transparent;
  position: absolute;
  right: 40px;
  transition: right 0.3s, opacity 0.3s;
  z-index: 1;
}
.header__close-search {
  cursor: pointer;
  height: 15px;
  width: 18px;
  background-image: url(../assets/icons/close.svg);
  border: none;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
}
.header__menu-button {
  display: flex;
  justify-content: center;
  position: relative;
  cursor: pointer;
  height: 14px;
  width: 18px;
  border: none;
  background-color: white;
}
.header__menu-open {
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s;
  top: 0;
}
.header__menu-close {
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s;
  top: 0;
}
.header__search-bar {
  height: 50%;
  width: 100%;
  border: none;
  padding: 10px 14px 10px 10px;
  font-size: 1.6rem;
  margin-left: 1px;
  color: rgb(135, 145, 153);
  border-radius: 10px;
}
.header__search-bar:focus {
  outline: none;
}
.header__buttons {
  display: flex;
  gap: 25px;
  padding: 0 16px;
  align-items: center;
}
.header__content {
  position: relative;
  max-width: 1440px;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
}
.header__menu {
  margin-right: 80px;
  display: flex;
  gap: 56.3px;
  align-items: center;
}
.header__menu-list {
  display: flex;
  gap: 56.3px;
}
.header__menu-list a:nth-last-child(-n+2) {
  display: none;
}
.header__menu-item {
  font-size: 1.6rem;
  color: var(--water-blue);
  text-transform: uppercase;
  text-decoration: none;
  flex-shrink: 0;
}
.header__menu-item:hover {
  color: var(--dark-water-blue);
}
.header__menu-button {
  display: none;
}

@media (max-width: 1023px) {
  .header__content {
    padding: 15px 24px 15px 25px;
  }
  .header__logo-img {
    height: 24px;
  }
  .header__menu {
    margin-right: 48px;
    gap: 24.7px;
  }
  .header__menu-item {
    font-size: 1.4rem;
  }
  .header__menu-list {
    gap: 24.7px;
  }
  .header__menu-item_mobile {
    font-size: 1.6rem;
  }
  .header__search {
    right: 24px;
  }
  .header__menu-mobile {
    display: none;
  }
  .header__search-line {
    height: 98%;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    margin-right: 0;
    margin-top: 0;
  }
  .header__search-bar {
    height: 87%;
    border: none;
    padding: 0 0 0 22px;
    font-size: 1.6rem;
    border-radius: 0;
  }
  .header__search-bar:focus {
    outline: none;
  }
  .header__buttons {
    background-color: white;
    display: flex;
    gap: 26.9px;
    padding: 0px 28px 0 16px;
  }
}
@media (max-width: 676px) {
  .header__content {
    padding: 15px 19px 15px 17px;
    background-color: white;
  }
  .header__buttons {
    padding: 0px 18px 0 16px;
  }
  .header__search {
    right: 64px;
  }
  .header__menu {
    margin-right: 0px;
    gap: 26.7px;
  }
  .header__menu-list {
    z-index: -1;
    display: flex;
    flex-direction: column;
    -webkit-backdrop-filter: blur(53px);
            backdrop-filter: blur(53px);
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    width: 100%;
    padding: 28px 16px 11px 16px;
    box-shadow: 0 4px 44px rgba(0, 59, 123, 0.0784313725);
    top: -264px;
    left: 0;
    gap: 0px;
    transition: top 0.4s;
  }
  .header__menu-list a:nth-last-child(-n+2) {
    display: block;
  }
  .header__menu-button {
    display: flex;
  }
  .header__menu-item {
    text-transform: none;
    font-size: 1.6rem;
    padding-bottom: 17px;
  }
  .header__menu-button {
    height: 14px;
    width: 18px;
  }
  .header__search-bar {
    padding: 0 0 0 14px;
  }
}
.open-menu {
  top: 56px;
}

.open-searchbar {
  z-index: 1;
  opacity: 1;
  display: flex;
}

.close {
  opacity: 0;
  pointer-events: none;
}

.active-menu {
  opacity: 1;
}

.search-active {
  margin-top: 7px;
  right: 87px;
  background-image: url(../assets/icons/search-blue.svg);
}

@media (max-width: 1023px) {
  .search-active {
    right: 64px;
    margin-top: 0;
  }
}/*# sourceMappingURL=header.css.map */