




/*--------------------Header--------------------*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: white;
  /* transform: translateY(-100px); */
  opacity: 1;
  transition: all .3s; }
  .header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-left: 1.25rem;
    padding-right: 1.25rem; }
  .header__logo {
    max-width: 200px; }
    .header__logo svg {
      max-width: 200px; }
  .header__navigation {
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, -2.799rem + 8.44vw, 4.688rem); }
  .header__buttons {
    display: flex;
    gap: 5px; }
  .header__btn {
    padding: 11px 16px;
    color: #fff;
    border: 2px solid var(--accent-color);
    background-color: transparent;
    transition: background-color 0.2s;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    font-size: clamp(0.688rem, 0.563rem + 0.62vw, 1rem);
    letter-spacing: 0.2em; }
    @media (max-width: 576px) {
      .header__btn {
        padding: 7px 15px; } }

@media (max-width: 992px) {
  .menu {
    position: absolute;
    z-index: 100;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 80%;
    display: flex;
    overflow: auto;
    padding: 20px 0;
    background-color: var(--bg-color);
    align-items: center;
    transition: left 0.2s; }
    .menu._active {
      left: 0; } }
.menu-icon {
  display: none; }
  @media (max-width: 992px) {
    .menu-icon {
      display: block;
      height: 18px;
      width: 30px;
      position: relative;
      cursor: pointer;
      z-index: 999; }
      .menu-icon span {
        transition: all 0.3s ease 0s;
        top: calc(50% - 1px);
        left: 0;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--text-color); }
        .menu-icon span:first-child {
          top: 0; }
        .menu-icon span:last-child {
          top: auto;
          bottom: 0; }
      .menu-icon._active span {
        transform: scale(0);background-color: var(--bg-color); }
        .menu-icon._active span:first-child {
          transform: rotate(-45deg);
          top: calc(50% - 1px); }
        .menu-icon._active span:last-child {
          transform: rotate(45deg);
          bottom: calc(50% - 1px); } }
.menu__body {
  /*    display: flex;
      align-items: center;
      gap: unquote("clamp(1.25rem, -8.073rem + 15.04vw, 2.5rem);");
      @media (max-width: 992px) {
        flex-direction: column;
        margin: auto;
      } */ }
.menu__link {
  /*    font-weight: 500;
      font-size: 16px; */
  /*    color: var(--text-color); */
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  /*    &:before {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        right: 0;
        background-color: var(--accent-color);
        height: 3px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s;
      } */ }
  @media (any-hover: hover) {
    .menu__link:hover {
      color: var(--accent-color); }
      .menu__link:hover:before {
        opacity: 1;
        visibility: visible; } }
  @media (max-width: 992px) {
    .menu__link {
      line-height: 50px;
      font-size: 30px; } }
  @media (max-width: 442px) {
    .menu__link {
      line-height: 100px;
      font-size: 20px; } }

@media (max-width: 992px) {
  .menu__link:hover {
    color: white; }

  .menu__item {
    text-align: center; }

  .menu__body {
    gap: 50px; } }
@media (max-width: 530px) {
  /* .header__logo {display:none;} */
  .header__navigation {
    justify-content: flex-end;
    width: 100%; } }
@media (any-hover: hover) {
  .login:hover {
    background-color: var(--accent-color); } }
@media (max-width: 425px) {
  .login {
    display: none; } }

.register {
  background-color: var(--accent-color); }
  @media (any-hover: hover) {
    .register:hover {
      background-color: transparent;
      color: var(--text-color); } }

.menu__link.external:after {
  content: ' ';
  position: relative;
  background: url("../images/fe_link-external.svg") no-repeat;
  display: inline-block;
  top: 0px;
  left: 5px;
  background-size: 18px;
  height: 16px;
  width: 16px; }
  @media (min-width: 993px) {
  .close_area-2 {
      display: none;
    }
}
  @media (max-width: 992px) {
    .menu__link.external:after {
      background: url("../images/fe_link-external_w.svg?2") no-repeat;
      background-size: 16px;
      top: -2px;
      left: 10px; } 

.close_area-2.mainmenu {
  background-color: rgba(245, 246, 255, 0.8);
  position: fixed;
  z-index: 99;
  display: none;
  width: 100%;
  height: 100%; }

.close_area-2.mainmenu.show_closearea {
  display: block;
  position: fixed; 
  top:0;
    z-index: 10;
}
}
.register.header__btn {
  display: block; }

.register.header__btn.hide_header__btn {
  display: none; }

.header_show {
  transition: all .3s;
  transform: translateY(0px);
  opacity: 1;
  -webkit-box-shadow: 0px 3px 8px 0px rgba(34, 60, 80, 0.07);
  -moz-box-shadow: 0px 3px 8px 0px rgba(34, 60, 80, 0.07);
  box-shadow: 0px 3px 8px 0px rgba(34, 60, 80, 0.07); }

/*--------------------/Header--------------------*/