* {
  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;
  background-color: #38b6ff;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  top: 0;
}
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 .kamalak {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  gap: 40px;
}
body .kamalak h1 {
  font-size: 40px;
  color: #fff;
}
body .kamalak .members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 50px;
  grid-row-gap: 50px;
}
body .kamalak .members .member {
  width: 210px;
  height: 210px;
  border: #38b6ff solid 2px;
  background-color: #38b6ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
body .kamalak .members .member .text {
  width: 170px;
}
body .kamalak .members .member .text p {
  width: 100%;
  text-align: left;
}
body .kamalak .members .member1 .picture {
  width: 170px;
  height: 170px;
  background: url(/images/team/Sulaymon.png) center center no-repeat;
  background-size: cover;
}
body .kamalak .members .member2 .picture {
  width: 170px;
  height: 170px;
  background: url(/images/team/Muhammad.jpg) center no-repeat;
  background-size: cover;
}
body .kamalak .members .member3 .picture {
  width: 170px;
  height: 170px;
  background: url(/images/team/shox.jpg) no-repeat;
  background-size: cover;
}
body .kamalak .members .member4 .picture {
  width: 170px;
  height: 170px;
  background: url(/images/team/yoqutjon.jpg) center no-repeat;
  background-size: cover;
}
body .kamalak .members .member5 .picture {
  width: 170px;
  height: 170px;
  background: center no-repeat;
  background-size: cover;
}
body .kamalak .members .member5 .picture::after {
  content: "Bu rasm mavjud emas";
  color: #fff;
}
body .kamalak .members .member6 .picture {
  width: 170px;
  height: 170px;
  background: url(/images/team/soliyajon.jpg) center no-repeat;
  background-size: cover;
}/*# sourceMappingURL=about.css.map */