@charset "UTF-8";
body {
  overflow-x: hidden;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}

.header {
  z-index: 10;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: transparent;
  
  transition: all ease 0.2s;
}
.header button {
  background-color: transparent;
}
.header button:hover {
  background-color: transparent;
}

.header__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
padding-top: 18px;
  padding-bottom: 18px;
}
@media screen and (max-width: 1550px) {
  .header__info {
    gap: 50px;
  }
}
@media screen and (max-width: 800px) {
  .header__info {
    gap: 0;
  }
}
@media screen and (max-width: 690px) {
  .header__info {
    flex-direction: column-reverse;
    align-items: start;
  }
}

.logo {
  max-width: 300px;
  cursor: pointer;
}
@media screen and (max-width: 1230px) {
  .logo {
    width: 25vw;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media screen and (max-width: 690px) {
  .logo {
    width: 200px;
  }
}

.header__top {
  display: flex;
  align-items: center;
  gap: 20px;
  text-wrap: nowrap;
}
@media screen and (max-width: 800px) {
  .header__top {
    display: none;
  }
  .header__top.active {
    display: flex;
    position: absolute;
    z-index: 200;
    bottom: -40vh;
    right: 10px;
  }
}

.header__left {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 12px;
}
@media screen and (max-width: 1150px) {
  .header__left {
    justify-content: center;
    gap: 0;
  }
}

.nav__list {
  display: flex;
  line-height: 22px;
  text-transform: uppercase;
  gap: 20px;
}
.nav__list li {
  cursor: pointer;
  font-size: 15px;
}
.nav__list li:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media screen and (max-width: 1812px) {
  .nav__list li {
    font-size: 16px;
  }
}
@media screen and (max-width: 1610px) {
  .nav__list li {
    font-size: 15px;
  }
}
@media screen and (max-width: 1700px) {
  .nav__list {
    gap: 20px;
    justify-content: end;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1150px) {
  .nav__list {
    display: none;
    position: absolute;
    transition: transform 0.5s;
    flex-wrap: nowrap;
    text-wrap: nowrap;
  }
  .nav__list.active {
    display: flex;
    flex-direction: column;
    padding-top: 90px;
    padding-right: 20px;
    justify-content: start;
    align-items: end;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
  }
  .nav__list.light.active{
    background-color: rgba(255, 255, 255, 0.85);
  }
}

.switch-theme {
  cursor: pointer;
  padding: 0;
  height: 28px;
}
.switch_img{
  width: 28px;
}
.header__social {
  display: flex;
  gap: 5px;
}

.vk-link {
  padding-right: 5px;
  border-right: 1px solid #fff;
}

.vk-link,
.socila__circle-link {
  height: 25px;
}

.header__burger {
  display: none;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 25px;
  right: 20px;
  z-index: 100;
  overflow: hidden;
  /* Меняем гамбургер иконку, когда меню открыто */
}
.header__burger span {
  width: 30px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  background-color: rgb(255, 255, 255);
  transition: all 0.3s ease-in-out;
}
.header__burger.light span{
   background-color: rgb(0, 0, 0);
}
.header__burger span:nth-of-type(2) {
  top: calc(50% - 9px);
}
.header__burger span:nth-of-type(3) {
  top: calc(50% + 9px);
}
.header__burger.active span:nth-of-type(1) {
  display: none;
}
.header__burger.active span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);
}
.header__burger.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}
@media screen and (max-width: 1150px) {
  .header__burger {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  .header__burger {
    right: 50px;
  }
}
@media screen and (max-width: 650px) {
  .header__burger {
    right: 25px;
  }
}
@media screen and (max-width: 500px) {
  .header__burger {
    right: 20px;
  }
}/*# sourceMappingURL=header_style.css.map */