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

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

body {
  width: 100%;
  height: 100vh;
  background-color: #000;
}
body header {
  position: sticky;
  top: 0 !important;
  background-color: #38b6ff;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 9999;
}
body header.full {
  display: none;
}
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;
}
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 .fullimg {
  position: fixed;
  z-index: 1000000000000000000000;
  width: 100%;
  height: 100vh;
  background-color: rgba(96, 96, 96, 0.5176470588);
  -webkit-backdrop-filter: blur(10%);
          backdrop-filter: blur(10%);
  display: none;
  justify-content: center;
}
body .fullimg img {
  height: 80% !important;
  cursor: pointer;
}
body .fullimg.active {
  display: flex;
}
body .fullimg span {
  cursor: pointer;
  font-size: 30px;
  position: absolute;
  right: 50px;
  color: #fff;
}
body .news {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column-reverse;
}
body .news .news-item {
  width: 93%;
  margin: 20px;
  text-align: start;
  background-color: #555;
  padding: 10px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 30px;
  cursor: pointer;
}
body .news .news-item:hover {
  background-color: #505050;
}
body .news .news-item.active img {
  display: block;
}
body .news .news-item.active .p {
  display: flex;
}
body .news .news-item img {
  width: 100%;
  height: auto;
  display: none;
}
body .news .news-item .title h2 {
  font-size: 30px;
  margin-bottom: 5px;
}
body .news .news-item .title h3 {
  font-size: 29px;
  position: relative;
  display: inline;
}
body .news .news-item .title h3::before {
  content: "";
  position: absolute;
  right: -70px;
  top: 50%;
  width: 60px;
  height: 3px;
  background-color: #38b6ff;
}
body .news .news-item .p {
  display: none;
  flex-direction: column;
  gap: 10px;
}
body .news .news-item .p p {
  font-size: 20px;
}
body .news .news-item .p p .see {
  width: auto;
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
  background-color: #38b6ff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  border: none;
  outline: none;
  cursor: pointer;
}
body .news .news-item .p p .see:hover {
  background-color: #05a3ff;
}/*# sourceMappingURL=news.css.map */