header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  padding-top: 32px;
}
header .header-content {
  width: 100%;
  max-width: 1840px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
@media (max-width: 768px) {
  header .header-content {
    gap: 20px;
  }
}
header .header-logo {
  height: 44px;
}
@media (max-width: 1024px) {
  header .header-logo {
    height: 37px;
  }
}
header .header-menu {
  display: flex;
  align-items: center;
  gap: 44px;
}
header .header-menu nav {
  display: flex;
  align-items: center;
  gap: 44px;
}
header .header-menu nav a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8980392157);
  position: relative;
  display: inline-block;
}
header .header-menu nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.8980392157);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
header .header-menu nav a:hover::after {
  transform: scaleX(1);
}
@media (max-width: 1024px) {
  header .header-menu nav a {
    font-size: 14px;
  }
}
header .header-menu button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s all ease;
}
header .header-menu button span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8980392157);
  transition: 0.3s all ease;
}
@media (max-width: 1024px) {
  header .header-menu button span {
    font-size: 13px;
  }
}
header .header-menu button:hover {
  background-color: #ffffff;
  border-color: #ffffff;
}
header .header-menu button:hover span {
  color: #161616;
}
@media (max-width: 768px) {
  header .header-menu {
    display: none;
  }
}
header .header-open {
  width: 76px;
  height: 44px;
  position: relative;
  display: none;
  border-radius: 36px;
  background: linear-gradient(113.4deg, rgba(172, 172, 172, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
  transition: 0.3s all ease;
}
header .header-open .burger,
header .header-open .close {
  transition: 0.3s all ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
header .header-open .close {
  opacity: 0;
  z-index: -1;
}
header .header-open.active {
  width: 40px;
  height: 40px;
}
header .header-open.active .burger {
  opacity: 0;
  z-index: -1;
}
header .header-open.active .close {
  opacity: 1;
  z-index: 0;
}
@media (max-width: 768px) {
  header .header-open {
    display: block;
  }
}
@media (max-width: 1024px) {
  header {
    padding: 0 20px;
    padding-top: 24px;
  }
}
@media (max-width: 768px) {
  header {
    height: 68px;
    justify-content: flex-end;
    padding: 0 12px;
    padding-top: 24px;
    z-index: 2;
    position: relative;
    transition: 0.3s all ease;
  }
  header.active {
    background-color: #161616;
  }
}

.mob-menu__wrapper {
  width: 100%;
  height: calc(100dvh - 68px);
  position: fixed;
  top: 68px;
  left: 0;
  z-index: 1;
  background: linear-gradient(113.4deg, rgba(22, 22, 22, 0.4) 0%, rgba(22, 22, 22, 0.08) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: 0.3s all ease;
}
.mob-menu__wrapper.hidden {
  opacity: 0;
  z-index: -1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.mob-menu__wrapper.hidden .mob-menu__content {
  transform: translateY(-100%);
  opacity: 0;
}
.mob-menu__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding: 24px 12px;
  padding-top: 32px;
  background-color: #161616;
  transition: 0.5s all ease;
}
.mob-menu__content nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mob-menu__content nav a {
  font-family: "schabo";
  font-size: 28px;
  line-height: 1.1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8980392157);
}
.mob-menu__content .buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mob-menu__content .buttons button {
  width: 50%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
}
.mob-menu__content .buttons button span {
  font-size: 15px;
  line-height: 1;
  color: #ffffff;
}
.mob-menu__content .buttons button.orng {
  background-color: #eb4e12;
}
.mob-menu__content .buttons button.black {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 43px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
}
footer .footer-content {
  width: 100%;
  max-width: 1840px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    justify-content: unset;
    align-items: center;
    gap: 32px;
  }
}
footer .footer-logo {
  height: 44px;
}
@media (max-width: 1024px) {
  footer .footer-logo {
    height: 37px;
  }
}
footer .footer-nav {
  display: flex;
  align-items: center;
  gap: 44px;
}
footer .footer-nav .kilev-link {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6980392157);
}
footer .footer-nav .kilev-link a {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6980392157);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 768px) {
  footer .footer-nav {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  footer {
    padding: 32px 20px;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 40px 12px;
  }
}/*# sourceMappingURL=template.css.map */