* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  border: 1px solid transparent;
}

body {
  background-color: #25252e;
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
}

body.lock {
  overflow: hidden;
}

.header {
  width: 100%;
  height: 17.262%;
  max-height: 145px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}

.header__container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.header__item {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 12px;
  color: #f6f6f6;
}

.header__item a {
  color: #f6f6f6;
}

.header__item {
  font-size: 16px;
  font-weight: 600;
  justify-content: flex-end;
}

.header__nav {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  padding: 0 0 0 8%;
}
@media (max-width: 1279px) {
  .header__nav {
    padding: 0 0 0 30px;
  }
}

.header__nav--item {
  font-weight: 400;
  cursor: pointer;
}

.header__nav--to-main {
  margin: 0 auto;
  font-weight: 700;
  font-size: 22px;
  white-space: nowrap;
}
@media (max-width: 1350px) {
  .header__nav--to-main {
    font-size: 18px;
  }
}
@media (max-width: 1279px) {
  .header__nav--to-main {
    margin: 0 auto 0 0;
  }
}
@media (max-width: 1200px) {
  .header__nav--to-main {
    font-size: 18px;
  }
}
@media (max-width: 1100px) {
  .header__nav--to-main {
    font-size: 16px;
  }
}

.header__nav--to-main img {
  width: 81px;
  height: 34px;
}

.header__item a.header__nav--item-login,
.header__item .name-and-logout {
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 20px 25px;
  color: #25252e;
  background: #fff;
}

.header__item .name-and-logout a {
  color: #25252e;
}

.header .mobile {
  width: 100%;
  min-height: 66px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 76px 0 0;
  z-index: 5;
}

.header .mobile .header__nav--to-main {
  margin: 0 auto;
}

.header .list-navigation {
  display: none;
}

.header .g-sizeContainer {
  max-width: 1160px;
  padding: 0 30px;
}

@media (max-width: 1000px) {
  .header.fixedHeader {
    position: fixed;
    background-color: #2a2a3a;
    top: 0;
    left: 0;
    width: 100%;
    height: 66px;
    z-index: 50;
  }
  .header .desctop {
    display: none;
  }
  .header .mobile {
    display: flex;
  }
  .header__burger {
    width: 40px;
    height: 26px;
    position: relative;
    display: flex;
    margin: 0 auto 0 18px;
  }
  .fixedHeader .header__burger {
    margin: 0 18px;
  }
  .header__burger span {
    width: 37px;
    height: 2px;
    position: absolute;
    display: block;
    background-color: white;
    transform-origin: left;
    transition: 0.3s;
  }
  .header__burger span:nth-child(1) {
    top: 0;
    left: 0;
  }
  .header__burger span:nth-child(2) {
    top: 12px;
    left: 0;
    opacity: 1;
  }
  .header__burger span:nth-child(3) {
    bottom: 0;
    left: 0;
  }
  .header__burger.active span:nth-child(1) {
    transform: rotate(41deg);
  }
  .header__burger.active span:nth-child(2) {
    opacity: 0;
  }
  .header__burger.active span:nth-child(3) {
    transform: rotate(-41deg);
  }
  .header .list-navigation {
    position: fixed;
    display: flex;
    top: -100vh;
    left: 0;
    height: 100vh;
    right: 0;
    background-color: #2a2a3a;
    transition: 0.3s;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .header .list-navigation .list-item {
    display: flex;
  }
  .header .list-navigation .list-item p,
  .header .list-navigation .list-item p a {
    color: white;
    font-size: 33px;
    max-width: 330px;
    width: 100%;
  }
  .header .list-navigation .list-item img {
    width: 38px;
    margin-right: 20px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header .list-navigation.active {
    top: 0;
  }
}
.header .popup-login {
  position: absolute;
  width: 429px;
  height: 479px;
  top: 0;
  right: 0;
  background: #eaeaeb;
  padding: 40px 33px 42px 34px;
  display: none;
  flex-direction: column;
}

.header .popup-login__title {
  display: flex;
  justify-content: space-between;
  color: #23232c;
  font-weight: bold;
  font-size: 24px;
  margin: 0 0 24px 0;
}

.header .popup-login__title .close {
  width: 22px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.header .popup-login__title .close span {
  display: block;
  height: 1px;
  width: 30px;
  background: #2a2a3a;
  transform-origin: left;
}

.header .popup-login__title .close span:nth-child(1) {
  transform: rotate(45deg);
}

.header .popup-login__title .close span:nth-child(2) {
  transform: rotate(-45deg);
}

.header .popup-login__title .close:hover {
  opacity: 0.6;
}

.header .popup-login__input {
  position: relative;
  border: 1px solid #f7f7f7;
  border-radius: 4px;
  height: 76px;
  padding: 10px;
  margin: 0 0 13px 0;
}

.header .popup-login__input input {
  background: transparent;
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  font-size: 20px;
}

.header .popup-login__input label {
  font-size: 10px;
  line-height: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #23232c;
}

.header .popup-login__input:nth-child(3) {
  margin: 0 0 34px 0;
}

.header .popup-login__btn {
  display: flex;
  flex-direction: column;
}

.header .popup-login__btn--blue {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #f6f6f6;
  border-radius: 6px;
  background: #0fa9f8;
  padding: 17px 0;
  display: flex;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.header .popup-login__btn--blue:hover {
  background: #0882c1;
}

.header .popup-login__btn p {
  margin: 10px 0;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #23232c;
}

.header .popup-login__btn--green {
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #f6f6f6;
  border-radius: 6px;
  background: #59c34c;
  padding: 17px 0;
  display: flex;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.header .popup-login__btn--green svg {
  margin: 0 13px 0 0;
}

.header .popup-login__btn--green:hover {
  background: #45913b;
}

.header .popup-login.open {
  display: flex;
}

@media (max-width: 767px) {
  .header {
    height: 90px;
  }
  .header__item:nth-child(1) {
    width: 137px;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .header__container {
    padding: 0;
  }
  .header .list-navigation .list-item p,
  .header .list-navigation .list-item p a {
    color: white;
    font-size: 25px;
    margin: 20px 0;
  }
  .header .g-sizeContainer {
    padding: 0;
  }
}
@media (max-width: 400px) {
  .header {
    height: 90px;
  }
  .header__item:nth-child(1) {
    width: 100px;
    text-align: center;
  }
  .header__item:nth-child(2) {
    font-size: 28px;
  }
}
@media (max-width: 350px) {
  .header {
    height: 90px;
  }
  .header__item:nth-child(1) {
    width: 90px;
    text-align: center;
    font-size: 14px;
  }
}
._auth-btn-xl._large-main-button.main--btn:hover {
  background: #0882c1;
}

.sber.social-link.js_gtag.mweb2app_auth:hover {
  background: #3b7434;
}

.loginRow > a:hover {
  opacity: 0.6;
}

.loginRow > .text {
  display: flex;
  margin: 0 0 9px 0;
  align-items: flex-end;
}

.loginRow > a {
  display: flex;
  padding: 17px 0 17px 70px;
  align-self: flex-end;
  margin: 0 0 20px 20px;
}

.checkbox.sber_auth_checkbox > label p {
  width: 478px;
  font-weight: 400;
  letter-spacing: initial;
}

.loginRow {
  align-items: inherit;
}

@media (max-width: 767px) {
  .checkbox.sber_auth_checkbox > label {
    transform: translateX(-9%);
  }
  .checkbox.sber_auth_checkbox > label p {
    width: 400px;
  }
  .loginRow {
    align-items: center;
  }
  .loginRow > a {
    display: block;
    margin: 32px auto 0 !important;
  }
}
@media (max-width: 400px) {
  .checkbox.sber_auth_checkbox > label p {
    width: 275px;
  }
  .checkbox.sber_auth_checkbox > label {
    transform: translateX(0%);
  }
  .headline {
    padding: 22px 0 0 15px;
  }
}
/*# sourceMappingURL=header.css.map */