.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1000;
}

.header__row {
  margin: 2.64vw auto 0 auto;
  position: relative;
  width: 94.1vw;
  height: 5.86vw;
  background: #fff;
  border-radius: 8vw;
  display: flex;
  align-items: center;
}

@media (max-width: 896px) {
  .header__row {
    margin: 3.85vw auto 0 auto;
    width: 89.74vw;
    height: 17.95vw;
  }
}

.header__row__image {
  position: absolute;
  top: 1.1vw;
  left: 3.67vw;
  width: 6.52vw;
}

@media (max-width: 896px) {
  .header__row__image {
    top: 3.33vw;
    left: 6.41vw;
    width: 22.56vw;
  }
}

.header__row__title {
  position: absolute;
  top: 1.61vw;
  left: 12.59vw;
  font-weight: 500;
  font-size: 0.806vw;
}

@media (max-width: 896px) {
  .header__row__title {
    top: 4.62vw;
    left: 31.54vw;
    font-size: 2.82vw;
  }
}

.header__row__links {
  position: absolute;
  top: 1.93vw;
  left: 36.2vw;
  display: flex;
  align-items: center;
  gap: 2.20vw;
}

.header__row__links__item {
  font-size: 1.171vw;
  color: #242526;
}

.header__row__button {
  position: absolute;
  top: 0;
  right: 0;
  width: 11.27vw;
  height: 100%;
  background: #ff166a;
  border-radius: 8vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__row__button__text {
  font-weight: 700;
  font-size: 1.171vw;
  color: #fff;
}

.header__row__accordion {
  position: absolute;
  background: #ff166a;
  top: 3.33vw;
  right: 3.33vw;
  width: 11.28vw;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 897px) {
  .header__row__accordion {
    display: none;
  }
}

.header__row__accordion__icon {
  width: 3.74vw;
  height: 3.08vw;
}

.header__nav {
  display: none;
  width: 33.67vw;
  height: 56.22vw;
  position: absolute;
  top: 0;
  right: 0;
  background: #f5f5ef;
  z-index: 1000;
  overflow: auto;
}

@media (max-width: 896px) {
  .header__nav {
    width: 100vw;
    height: 91.71vh;
    left: -5vw;
  }
}

.header__nav__accordion {
  position: absolute;
  background: #ff166a;
  top: 3.33vw;
  right: 3.33vw;
  width: 11.28vw;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__nav__accordion__icon {
  width: 3.74vw;
  height: 3.08vw;
}

.header__nav__links {
  margin: 11.35vw 6.77vw 0 6.59vw;
  width: 20.28vw;
  display: block;
}

@media (max-width: 896px) {
  .header__nav__links {
    margin: 25.64vw 5.13vw 0 5.13vw;
    width: 89.74vw;
  }
}

.header__nav__links__item {
  margin: 2.2vw 0 1.87vw 0;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  cursor: pointer;
}

@media (max-width: 896px) {
  .header__nav__links__item {
    margin: 7.74vw 0 6.54vw 0;
    width: 89.74vw;
  }
}

.header__nav__links__item--first {
  margin-top: 0;
}

.header__nav__links__item__text {
  color: #242526;
  font-weight: 500;
  font-size: 1.318vw;
}

@media (max-width: 896px) {
  .header__nav__links__item__text {
    font-size: 4.61vw;
  }
}

.header__nav__links__item__icon {
  width: 0.78vw;
  color: #717171;
}

@media (max-width: 896px) {
  .header__nav__links__item__icon {
    margin: 0 2.56vw 0 0;
    width: 2.73vw;
  }
}

.header__nav__links__border {
  width: 100%;
  height: 1px;
  background: rgba(255, 22, 106, 0.2);
}

.header__nav__policies {
  display: block;
  margin: 2.98vw 0 8.27vw 6.59vw;
  width: 20.28vw;
}

@media (max-width: 896px) {
  .header__nav__policies {
    margin: 10.26vw 0 10.26vw 6.59vw;
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
    white-space: nowrap;
  }
}

.header__nav__policies__item {
  display: block;
  font-size: 1.025vw;
  color: #717171;
  cursor: pointer;
}

@media (max-width: 896px) {
  .header__nav__policies__item {
    font-size: 3.59vw;
  }
}

.header__nav__policies__item:hover {
  text-decoration: underline;
}