* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-family: sans-serif;
}

*::after, ::before {
  box-sizing: border-box;
}

::-moz-selection {
  background-color: #38b6ff;
}

::selection {
  background-color: #38b6ff;
}

body {
  width: 100%;
  height: 100vh;
  font-family: Arial, sans-serif;
  background: #000;
}
body header {
  position: fixed;
  background-color: #38b6ff;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
body header .brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
body header .brand span {
  font-size: 20px;
  color: #fff;
}
body header .brand .logo {
  height: 50px;
  width: 80px;
  background: url(/images/MKJ1.png) center;
  background-size: 120px;
}
body header .hamburger {
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  display: none;
}
body header .hamburger .line {
  width: 40px;
  height: 4px;
  background-color: #fff;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}
body header .hamburger.active .line {
  transition: 0.5s;
}
body header .hamburger.active .line2 {
  opacity: 0;
}
body header .hamburger.active .line1 {
  transform: rotate(45deg) translateX(15px);
}
body header .hamburger.active .line3 {
  transform: rotate(-45deg) translateX(13px);
}
body header nav ul {
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
body header nav ul.open {
  transform: translateX(0%);
  background-color: #38b6ff;
}
body header nav ul .link {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1px;
}
body header nav ul .link:hover .line {
  width: 100%;
}
body header nav ul .link li a {
  text-decoration: none;
  color: #fff;
}
body header nav ul .link .line {
  width: 0;
  height: 3px;
  background-color: #fff;
  transition: 0.25s;
}
body .main {
  width: 100%;
  height: 100vh;
  background: url(/images/rabochchiStol.png) no-repeat center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
body .main .text {
  width: 60%;
  margin: 200px 0 0 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body .main .text h2 {
  font-size: 56px;
  color: #fff;
}
body .main .text p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}
body .main .text .btn {
  width: 56px;
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
  background-color: #38b6ff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
body .main .text .btn:hover {
  background-color: #05a3ff;
}
body .footer {
  background-color: #555;
  color: #fff;
  text-align: center;
}
body .footer-content {
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
body .footer-content ul {
  display: flex;
}
body .footer-content ul li {
  margin-right: 20px;
}
body .footer-content ul li a {
  color: #fff;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */