.burger {
  width: 30px;
  height: 30px;
  position: relative;
  overflow: hidden;
  display: none;
}
@media (max-width: 767.98px) {
  .burger {
    display: block;
  }
}
.burger__line {
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  background-color: #fff;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
.burger__line:nth-of-type(2) {
  top: calc(50% - 9px);
}
.burger__line:nth-of-type(3) {
  top: calc(50% + 9px);
}
.burger.active .burger__line:nth-of-type(1) {
  display: none;
}
.burger.active .burger__line:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);
}
.burger.active .burger__line:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}

.header {
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  transition: background-color 0.1s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

.header-bg {
  background-color: #181818;
}
.header__wrapper {
  max-width: 82rem;
  padding: 0 1rem;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 5rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .header__wrapper {
    gap: 1rem;
  }
}
.header__logo {
  position: relative;
  z-index: 1;
}
.header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 5rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .header__inner {
    gap: 1rem;
  }
}
@media (max-width: 767.98px) {
  .header__inner {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0 0.5rem;
    padding-top: calc(80px + 1rem);
    background-color: #333;
    transition: transform 0.3s ease-in-out;
    transform: translateX(-100%);
  }
}
.header__inner.open {
  transform: translateX(0%);
}
.header.scrolled {
  background-color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5rem;
  color: #333333;
}
.logo__img {
  width: 4rem;
  height: 4rem;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 767.98px) {
  .logo__img {
    width: 3rem;
    height: 3rem;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .logo__text {
    font-size: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  .logo__text {
    font-size: 1rem;
  }
}

.nav {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .nav {
    gap: 1rem;
  }
}
@media (max-width: 767.98px) {
  .nav {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    gap: 0.5rem;
  }
}
.nav__item {
  position: relative;
  font-size: var(--e-global-typography-83208e5-font-size);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
}

.nav__item--mobile {
  display: none;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .nav__item {
    font-size: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  .nav__item {
    padding: 0.5rem 1rem;
    width: 100%;
    font-size: 1rem;
    border-radius: 5px;
    justify-content: flex-start;
  }
  .nav__item--mobile {
    display: block;
  }
}

.content-site {
  margin-top: 80px;
}

.cookie {
  padding: 1rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .column {
    flex-direction: column !important;
    align-items: flex-start;
  }
}
