@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  color: black;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
}

::-webkit-scrollbar {
  background: white;
  width: 15px;
}

::-webkit-scrollbar-thumb:hover {
  background: #777;
}

::-webkit-scrollbar-thumb:active {
  background: #999;
}

::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 15px;
}

:root {
  --clr: rgb(0, 130, 140);
  --clrHover: rgb(0, 151, 162);
  --whiteClr: rgba(63, 129, 134, 0.6);
  --bigNav: 130px;
  --smallNav: 50px;
  --smallShadow: 1px 3px 4px rgba(0, 0, 0, 0.1), -1px -1px 5px rgba(0, 0, 0, 0.1);
  --shadow: 1px 6px 5px rgba(0, 0, 0, 0.1), -1px -1px 5px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.title {
  border-bottom: 1px solid #aaa;
  padding: 20px 0;
  margin-bottom: 30px;
}
.title h1 {
  text-align: center;
}

.mavzu:hover h1:before {
  transform: scaleX(0.3);
}
.mavzu h1 {
  text-align: center;
  padding: 10px 0 50px 0;
  margin-bottom: 20px;
}
.mavzu h1:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  background: var(--clr);
  transform: scaleX(0.05);
  margin-top: 60px;
  transition: 0.3s;
}

.theme {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.theme h2 {
  display: flex;
  align-items: center;
  font-size: 26px;
  font-weight: 600;
}
.theme h2 span {
  font-size: 30px;
  margin-right: 10px;
  color: var(--clr);
}
.theme .links {
  display: flex;
  gap: 20px;
}
.theme a {
  background: var(--clr);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
}
.theme a:hover {
  background: var(--clrHover);
}

@media (max-width: 1300px) {
  .title {
    padding: calc(1vw + 10px) 0;
    margin-bottom: calc(1.5vw + 15px);
  }
  .title h1 {
    font-size: calc(1.2vw + 18px);
  }
  .mavzu h1 {
    font-size: calc(1vw + 20px);
    padding: 0 0 calc(2vw + 25px) 0;
    margin-bottom: calc(1vw + 10px);
  }
  .theme {
    margin-bottom: calc(1.5vw + 15px);
  }
  .theme h2 {
    font-size: calc(1.2vw + 15px);
  }
  .theme h2 span {
    font-size: calc(1.5vw + 15px);
    margin-right: calc(0.5vw + 5px);
  }
  .theme .links {
    gap: calc(1vw + 10px);
  }
  .theme a {
    padding: calc(0.5vw + 4px) calc(0.8vw + 10px);
  }
}
.fixed {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}
.fixed .left {
  border-radius: 0 10px 10px 0;
  opacity: 0.8;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.fixed .left:hover {
  opacity: 1;
  transform: scale(105%) translateX(2%);
}
.fixed .left * {
  color: white;
  transition: all 0.3s;
}
.fixed .left .link:first-child {
  border-radius: 0 10px 0 0;
}
.fixed .left .link:last-child {
  border-radius: 0 0 10px 0;
}
.fixed .left .link {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0 15px;
  background: var(--clr);
  width: 50px;
  height: 48px;
}
.fixed .left .link:hover {
  background: white;
  width: auto;
  border-radius: 0 10px 10px 0;
  gap: 5px;
}
.fixed .left .link:hover span {
  width: auto;
  overflow: visible;
  color: var(--clr);
}
.fixed .left .link:hover i {
  color: var(--clr);
}
.fixed .left .link span {
  width: 0;
  overflow: hidden;
  font-size: 18px;
}
.fixed .left .link i {
  font-size: 24px;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 80px;
  margin-right: 15px;
  -webkit-animation: 10s image ease-in-out infinite;
          animation: 10s image ease-in-out infinite;
}
@-webkit-keyframes image {
  90% {
    transform: scale(1) rotateY(0);
  }
  95% {
    transform: scale(1.2) rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes image {
  90% {
    transform: scale(1) rotateY(0);
  }
  95% {
    transform: scale(1.2) rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.logo .name h1,
.logo .name h2 {
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.5;
}
.logo .name h1 {
  font-size: 30px;
}
.logo .name h2 {
  font-size: 18px;
  opacity: 0.8;
  letter-spacing: 1px;
}

.full-screen {
  height: 100vh;
  overflow: hidden;
}
.full-screen .navbar {
  background-color: var(--clr);
}
.full-screen .navbar * {
  color: white;
}
.full-screen .navbar .container {
  height: var(--bigNav);
  display: flex;
  justify-content: space-between;
}
.full-screen .navbar .container .right {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.full-screen .navbar .container .right .adres {
  display: flex;
  align-items: center;
}
.full-screen .navbar .container .right .adres i {
  font-size: 30px;
  margin-right: 20px;
}
.full-screen .navbar .container .right .adres .manzil {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.full-screen .navbar .container .right .adres .manzil .top,
.full-screen .navbar .container .right .adres .manzil .bottom {
  line-height: 1.5;
}
.full-screen .navbar .container .right .adres .manzil .top {
  font-size: 20px;
}
.full-screen .navbar .container .right .adres .manzil .bottom {
  font-size: 16px;
  opacity: 0.8;
}
.full-screen .navbar .container .right .adres .manzil .bottom:hover {
  opacity: 1;
}
.full-screen .navbar2 {
  background: white;
}
.full-screen .navbar2 .container {
  height: var(--smallNav);
  display: flex;
  align-items: center;
}
.full-screen .navbar2 .container .links {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.full-screen .navbar2 .container .links > span {
  display: none;
}
.full-screen .navbar2 .container .links .link {
  padding: 16px;
}
.full-screen .navbar2 .container .links .link:hover .open-links {
  display: flex;
  -webkit-animation: 0.3s openlinks linear 1;
          animation: 0.3s openlinks linear 1;
  transform-origin: top;
}
@-webkit-keyframes openlinks {
  0% {
    display: none;
    transform: rotateX(-90deg);
    opacity: 0;
  }
  10% {
    display: flex;
    opacity: 0;
    transform: rotateX(-90deg);
  }
  100% {
    opacity: 1;
  }
}
@keyframes openlinks {
  0% {
    display: none;
    transform: rotateX(-90deg);
    opacity: 0;
  }
  10% {
    display: flex;
    opacity: 0;
    transform: rotateX(-90deg);
  }
  100% {
    opacity: 1;
  }
}
.full-screen .navbar2 .container .links .link:hover > a {
  color: var(--clr);
}
.full-screen .navbar2 .container .links .link:hover > a i {
  transform: rotate(180deg);
  color: var(--clr);
}
.full-screen .navbar2 .container .links .link > a {
  line-height: 2;
  font-size: 18px;
}
.full-screen .navbar2 .container .links .link > a i {
  margin-left: 8px;
  transition: 0.3s;
  zoom: 0.9;
}
.full-screen .navbar2 .container .links .link .open-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  background: white;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 100;
}
.full-screen .navbar2 .container .links .link .open-links a {
  padding: 10px 20px;
  border-radius: 5px;
}
.full-screen .navbar2 .container .links .link .open-links a:hover {
  background: var(--clr);
  color: white;
}
.full-screen .navbar2 .container .open-menu {
  display: none;
}
.full-screen .section {
  height: calc(100vh - (var(--bigNav) + var(--smallNav)));
  width: 100%;
}
.full-screen .section .swiper-pagination {
  transform: scale(1.5);
  bottom: 60px;
  z-index: 1;
}
.full-screen .section .swiper-pagination-bullet {
  background: var(--clr);
}
.full-screen .section .swiper-pagination-bullet {
  opacity: 0.8;
  transition: 0.1s ease;
}
.full-screen .section .swiper-pagination-bullet:hover {
  transform: scale(1.5);
  margin: auto 6px;
}
.full-screen .section .swiper-pagination-bullet-active {
  opacity: 1;
  filter: brightness(1.8);
}
.full-screen .section .swiper-button-prev.swiper-button-disabled,
.full-screen .section .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  background: var(--whiteClr);
}
.full-screen .section .swiper-button-prev:after,
.full-screen .section .swiper-button-next:after {
  font-size: 16px;
}
.full-screen .section .swiper-button-prev:hover,
.full-screen .section .swiper-button-next:hover {
  transform: scale(1.02);
}
.full-screen .section .swiper-button-prev,
.full-screen .section .swiper-button-next {
  background: var(--clr);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: white;
  margin: 0;
  left: 50%;
  top: calc(100% - 100px);
  transition: 0.1s;
}
.full-screen .section .swiper-button-prev:hover,
.full-screen .section .swiper-button-next:hover {
  background: var(--clrHover);
}
.full-screen .section .swiper-button-next {
  margin-left: 80px;
}
.full-screen .section .swiper-button-prev {
  margin-left: -135px;
}
.full-screen .section .section-wrapper {
  height: 100%;
  width: 100%;
}
.full-screen .section .section-wrapper .box {
  display: flex;
  align-items: center;
  background: var(--background) no-repeat center center/cover;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.7);
}
.full-screen .section .section-wrapper .box .container {
  width: 100%;
}
.full-screen .section .section-wrapper .box .container .absolute {
  max-width: 700px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}
.full-screen .section .section-wrapper .box .container .absolute * {
  color: white;
}
.full-screen .section .section-wrapper .box .container .absolute h2 {
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 5px;
  padding: 5px 10px;
  border-radius: 5px;
  background: var(--clr);
}
.full-screen .section .section-wrapper .box .container .absolute .txt {
  width: 80%;
  font-size: 20px;
  background: white;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 30px;
}
.full-screen .section .section-wrapper .box .container .absolute .txt p {
  font-size: 18px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: black;
}
.full-screen .section .section-wrapper .box .container .absolute a {
  font-size: 20px;
  margin-bottom: 5px;
  padding: 12px 80px;
  border-radius: 5px;
  background: var(--clr);
  transition: 0.2s ease;
}
.full-screen .section .section-wrapper .box .container .absolute a:hover {
  background: var(--clrHover);
  transform: scaleX(1.02);
  letter-spacing: 0.8px;
}

.surovlar {
  padding: 60px 0;
}
.surovlar .container > h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}
.surovlar .container .flex {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2.5%;
}
.surovlar .container .flex .box {
  width: 23%;
  box-shadow: var(--smallShadow);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition: 0.2s;
}
.surovlar .container .flex .box:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2%);
  background: var(--clr);
}
.surovlar .container .flex .box:hover p {
  color: white;
}
.surovlar .container .flex .box .img {
  width: 30%;
  display: flex;
  justify-content: flex-end;
}
.surovlar .container .flex .box .img img {
  height: 60px;
  border-radius: 5px;
}
.surovlar .container .flex .box p {
  width: 70%;
  font-weight: 600;
  font-size: 22px;
}

.news,
.attes {
  padding: 60px 0;
}
.news .flex,
.attes .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.flex .yangiliklar,
.flex .right-menu {
  width: 66%;
}
.flex .yangiliklar .new,
.flex .yangiliklar .miniNew .new,
.flex .right-menu .new,
.flex .right-menu .miniNew .new {
  display: flex;
  background: whitesmoke;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: 0.3s;
}
.flex .yangiliklar .new:hover,
.flex .yangiliklar .miniNew .new:hover,
.flex .right-menu .new:hover,
.flex .right-menu .miniNew .new:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.flex .yangiliklar .new .img,
.flex .yangiliklar .miniNew .new .img,
.flex .right-menu .new .img,
.flex .right-menu .miniNew .new .img {
  height: 220px;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 6px;
}
.flex .yangiliklar .new .img img,
.flex .yangiliklar .miniNew .new .img img,
.flex .right-menu .new .img img,
.flex .right-menu .miniNew .new .img img {
  height: 100%;
  border-radius: 6px;
}
.flex .yangiliklar .new .txt,
.flex .yangiliklar .miniNew .new .txt,
.flex .right-menu .new .txt,
.flex .right-menu .miniNew .new .txt {
  width: 60%;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.flex .yangiliklar .new .txt .top h3,
.flex .yangiliklar .miniNew .new .txt .top h3,
.flex .right-menu .new .txt .top h3,
.flex .right-menu .miniNew .new .txt .top h3 {
  font-weight: 600;
  margin-bottom: 10px;
}
.flex .yangiliklar .new .txt .top h3,
.flex .yangiliklar .new .txt .top p,
.flex .yangiliklar .miniNew .new .txt .top h3,
.flex .yangiliklar .miniNew .new .txt .top p,
.flex .right-menu .new .txt .top h3,
.flex .right-menu .new .txt .top p,
.flex .right-menu .miniNew .new .txt .top h3,
.flex .right-menu .miniNew .new .txt .top p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.flex .yangiliklar .new .txt .top p,
.flex .yangiliklar .miniNew .new .txt .top p,
.flex .right-menu .new .txt .top p,
.flex .right-menu .miniNew .new .txt .top p {
  -webkit-line-clamp: 3;
}
.flex .yangiliklar .new .txt .bottom,
.flex .yangiliklar .miniNew .new .txt .bottom,
.flex .right-menu .new .txt .bottom,
.flex .right-menu .miniNew .new .txt .bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}
.flex .yangiliklar .new .txt .bottom span,
.flex .yangiliklar .miniNew .new .txt .bottom span,
.flex .right-menu .new .txt .bottom span,
.flex .right-menu .miniNew .new .txt .bottom span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.flex .yangiliklar .new .txt .bottom span:first-child span,
.flex .yangiliklar .miniNew .new .txt .bottom span:first-child span,
.flex .right-menu .new .txt .bottom span:first-child span,
.flex .right-menu .miniNew .new .txt .bottom span:first-child span {
  margin-bottom: 4px;
}
.flex .right-menu {
  width: 32%;
  background: whitesmoke;
  padding: 20px;
  border-radius: 10px;
}
.flex .right-menu h2 {
  text-align: left;
  margin: 0 0 20px 0;
  font-weight: 600;
}
.flex .right-menu .miniNew .new {
  background: white;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}
.flex .right-menu .miniNew .new .img {
  height: 100px;
}
.flex .right-menu .miniNew .new .txt .top p {
  display: none;
}
.flex .right-menu .miniNew .new .txt .top h3 {
  font-size: 18px;
}
.flex .right-menu .miniNew .new .txt .bottom > span {
  font-size: 14px;
}
.flex .right-menu .maktab {
  margin-bottom: 20px;
  background: white;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.flex .right-menu .maktab .img {
  margin: 10px;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
}
.flex .right-menu .maktab .img img {
  height: 100%;
}
.flex .right-menu .maktab .links {
  display: flex;
  flex-direction: column;
}
.flex .right-menu .maktab .links a {
  border-bottom: 0;
  padding: 10px 15px;
  font-size: 18px;
  margin: 2px;
}
.flex .right-menu .maktab .links a:hover {
  background: rgba(0, 0, 0, 0.15);
}
.flex .right-menu .link-img {
  width: 100%;
}
.flex .right-menu .link-img img {
  width: 100%;
}

.static {
  background: url("https://img.freepik.com/free-photo/book-with-green-board-background_1150-3837.jpg?w=1380&t=st=1663564051~exp=1663564651~hmac=61d84098333733f97880eb349608d0a858d83dd7fde8a6edff91e8103dce6dc1") no-repeat center center/cover;
  background-attachment: fixed;
}
.static .opacity {
  background: rgba(0, 0, 0, 0.4);
  padding: 60px 0;
}
.static .opacity * {
  color: white;
}
.static .opacity .mavzu h1::before {
  transform: scaleX(0.2);
}
.static .opacity:hover .mavzu h1:before {
  transform: scaleX(0.3) scaleY(2);
  filter: brightness(1.5);
}
.static .opacity .container > h1 {
  text-align: center;
  margin-bottom: 40px;
}
.static .opacity .container .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 20px;
}
.static .opacity .container .flex .box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.static .opacity .container .flex .box .img svg {
  height: 120px;
  fill: transparent;
  stroke: white;
  stroke-dasharray: 20;
  transition: 4s ease;
  stroke-width: 1px;
  opacity: 0.6;
}
.static .opacity .container .flex .box .img svg.reveal.active {
  stroke-dasharray: 60;
  opacity: 1;
}
.static .opacity .container .flex .box:first-child .img svg.reveal.active {
  stroke-dasharray: 600;
  opacity: 1;
}
.static .opacity .container .flex .box:nth-child(2) .img svg.reveal.active {
  stroke-dasharray: 100;
  opacity: 1;
}
.static .opacity .container .flex .box:nth-child(3) .img svg.reveal.active {
  stroke-width: 6px;
  stroke-dasharray: 2100;
  opacity: 1;
}
.static .opacity .container .flex .box .txt {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.static .opacity .container .flex .box .txt h1 {
  font-size: 46px;
}
.static .opacity .container .flex .box .txt p {
  font-size: 18px;
}

@media (max-width: 768px) {
  .static .opacity .container .flex {
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .static .opacity .container .flex .box img {
    height: calc(5vw + 40px);
  }
  .static .opacity .container .flex .box .txt h1 {
    font-size: calc(2vw + 20px);
  }
  .static .opacity .container .flex .box .txt p {
    font-size: calc(1vw + 10px);
  }
}
@media (max-width: 550px) {
  .static .opacity .container h1 {
    font-size: calc(1.5vw + 18px);
  }
  .static .opacity .container .flex {
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }
  .static .opacity .container .flex .box {
    width: 100%;
  }
  .static .opacity .container .flex .box:last-child .img {
    transform: none;
    justify-content: flex-end;
    padding: 0;
  }
  .static .opacity .container .flex .box:last-child .img svg {
    transform: none;
  }
  .static .opacity .container .flex .box .img {
    height: calc(6vw + 50px);
    width: 50%;
    display: flex;
    justify-content: flex-end;
  }
  .static .opacity .container .flex .box .img svg {
    margin: 0;
    width: 120px;
    height: auto;
  }
  .static .opacity .container .flex .box .txt {
    width: 50%;
  }
  .static .opacity .container .flex .box .txt h1 {
    font-size: calc(1.3vw + 16px);
  }
}
.kitob-dars {
  padding: 50px 0;
}
.kitob-dars .container .flex {
  display: flex;
  align-items: flex-start;
  gap: 2.5%;
  flex-wrap: wrap;
}
.kitob-dars .container .flex .box {
  width: 23%;
  border-radius: 15px;
  background: url(./img/books.jpg) no-repeat center center/cover;
  margin-bottom: 2%;
  height: 220px;
  transition: 0.3s;
  box-shadow: var(--smallShadow);
  display: flex;
  justify-content: center;
  align-items: center;
}
.kitob-dars .container .flex .box:hover {
  transform: scale(1.02);
}
.kitob-dars .container .flex .box p {
  color: white;
  font-size: 20px;
  width: 100%;
  text-align: center;
  background: hsl(17deg, 100%, 50%);
  padding: 10px 0;
}
.kitob-dars .container .flex .box span {
  display: none;
}

.again {
  background: url("http://smartschool.uz/wp-content/uploads/2020/02/pochemuchka-bg.jpg?id=3686");
  height: 800px;
}
.footer {
  background: url("https://t4.ftcdn.net/jpg/02/83/12/69/360_F_283126997_58Uaz11UqxO4KrAg0wHGQtmpoM82JGcF.jpg") no-repeat top center/cover;
}
.footer * {
  color: white;
}
.footer .opacity {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 60px;
  width: 100%;
  height: 100%;
}
.footer .opacity .container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4vw;
  justify-content: space-between;
}
.footer .opacity .container .center h2,
.footer .opacity .container .right h2 {
  font-size: 25px;
  margin-bottom: 10px;
}
.footer .opacity .container .center .apps,
.footer .opacity .container .right .apps {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer .opacity .container .center .apps a:hover,
.footer .opacity .container .right .apps a:hover {
  color: var(--clr);
  filter: brightness(1.8);
}
.footer .opacity .container .center .apps a:hover i,
.footer .opacity .container .right .apps a:hover i {
  color: var(--clr);
}
.footer .opacity .container .center .apps a,
.footer .opacity .container .right .apps a {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.1s;
  font-size: 18px;
  opacity: 0.9;
}

@media (max-width: 1500px) {
  :root {
    --bigNav: calc(4vw + 80px);
    --smallNav: 10px;
  }
  .surovlar,
.news,
.static .opacity,
.kitob-dars,
.footer .opacity,
.attes {
    padding: calc(3vw + 30px) 0;
  }
  .theme {
    margin-bottom: 30px;
  }
  .theme h2 {
    font-size: calc(0.6vw + 16px);
  }
  .theme h2 span {
    font-size: 30px;
    margin-right: calc(0.6vw + 2px);
  }
  .theme a {
    padding: 8px 16px;
    font-size: calc(0.6vw + 10px);
    border-radius: 20px;
  }
  .container {
    padding: 0 4%;
  }
  .full-screen .navbar .container .logo img {
    height: calc(4vw + 30px);
  }
  .full-screen .navbar .container .logo .name h1 {
    font-size: calc(2vw + 2px);
  }
  .full-screen .navbar .container .logo .name h2 {
    font-size: calc(1vw + 2px);
  }
  .full-screen .navbar .container .right .adres i {
    font-size: calc(1.2vw + 15px);
  }
  .full-screen .navbar .container .right .adres .manzil .top {
    font-size: calc(1.5vw + 2px);
  }
  .full-screen .navbar .container .right .adres .manzil .bottom {
    font-size: calc(1.2vw + 2px);
  }
  .full-screen .navbar {
    margin-top: var(--smallNav);
  }
  .full-screen .navbar .container .right {
    gap: calc(1.2vw + 12px);
  }
  .full-screen .navbar2 {
    position: fixed;
    width: 100%;
    background: white;
    height: var(--smallNav0);
    z-index: 1000;
    top: 0;
    left: 0;
    border-bottom: 1px solid var(--clr);
  }
  .full-screen .navbar2 .container > span {
    background: white;
    padding: 5px 15px;
    position: absolute;
    top: 0;
    right: 0;
    color: var(--clr);
    border-bottom: 1px solid var(--clr);
  }
  .full-screen .navbar2 .container > span::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 24px;
    left: 0;
    bottom: 0;
    background: var(--clr);
  }
  .full-screen .navbar2 .container .links {
    width: 50%;
    position: fixed;
    top: -100vh;
    right: -40%;
    flex-direction: column;
    z-index: 1000;
    background: white;
    height: 100vh;
    justify-content: flex-start;
    gap: 0;
    padding-top: calc(3vw + 30px);
    transition: 0.3s;
  }
  .full-screen .navbar2 .container .links .link {
    padding: calc(0.6vw + 3px);
  }
  .full-screen .navbar2 .container .links > span {
    display: flex;
    position: absolute;
    right: 4vw;
    top: 3vh;
  }
  .full-screen .navbar2 .container .links.open {
    right: 0;
    top: 0;
  }
  .full-screen .navbar2 .container .open-menu {
    display: flex;
  }
  .surovlar .container > h1 {
    margin-bottom: calc(0.8vw + 16px);
    font-size: calc(0.6vw + 16px);
  }
  .surovlar .container .flex .box p {
    font-size: calc(0.3vw + 18px);
  }
  .kitob-dars .container .flex .box {
    height: calc(8.5vw + 75px);
  }
  .kitob-dars .container .flex .box p {
    font-size: calc(0.6vw + 10px);
  }
}
@media (max-width: 1300px) {
  .right-menu {
    display: none;
    width: 100%;
  }
  .right-menu > h2 {
    font-size: calc(0.6vw + 15px);
  }
  .right-menu .miniNew {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .right-menu .miniNew .new {
    width: 49%;
  }
  .right-menu .miniNew .new .img {
    height: calc(8vw + 30px);
  }
  .right-menu .miniNew .new .txt {
    padding-left: calc(0.7vw + 4px);
  }
  .right-menu .miniNew .new .txt .top h3 {
    font-size: calc(1vw + 5px);
  }
  .right-menu .miniNew .new .txt .bottom {
    gap: calc(0.5vw + 5px);
  }
  .right-menu .miniNew .new .txt .bottom > span {
    font-size: calc(0.6vw + 6px);
    gap: 0.2vw;
  }
  .right-menu .miniNew .new .txt .bottom > span span {
    font-size: calc(1vw + 10px);
  }
  .right-menu .miniNew .new .txt .bottom span:first-child span {
    margin-bottom: calc(0.1vw + 1px);
  }
  .news .container .flex,
.attes .container .flex {
    flex-direction: column;
  }
  .news .container .flex .yangiliklar,
.attes .container .flex .yangiliklar {
    width: 100%;
    margin-bottom: calc(3vw + 10px);
  }
  .news .container .flex .yangiliklar .new,
.attes .container .flex .yangiliklar .new {
    margin-bottom: calc(1.4vw + 8px);
  }
  .news .container .flex .yangiliklar .new .img,
.attes .container .flex .yangiliklar .new .img {
    height: calc(15vw + 68px);
  }
  .news .container .flex .yangiliklar .new .txt,
.attes .container .flex .yangiliklar .new .txt {
    padding-left: calc(1vw + 8px);
  }
  .news .container .flex .yangiliklar .new .txt .top h3,
.attes .container .flex .yangiliklar .new .txt .top h3 {
    font-size: calc(1vw + 10px);
  }
  .news .container .flex .yangiliklar .new .txt .top p,
.attes .container .flex .yangiliklar .new .txt .top p {
    font-size: calc(0.8vw + 8px);
  }
  .news .container .flex .yangiliklar .new .txt .bottom,
.attes .container .flex .yangiliklar .new .txt .bottom {
    gap: calc(1vw + 10px);
  }
  .news .container .flex .yangiliklar .new .txt .bottom > span,
.attes .container .flex .yangiliklar .new .txt .bottom > span {
    font-size: calc(0.6vw + 8px);
    gap: calc(0.2vw + 2px);
  }
  .news .container .flex .yangiliklar .new .txt .bottom > span span,
.attes .container .flex .yangiliklar .new .txt .bottom > span span {
    font-size: calc(1.2vw + 12px);
  }
  .news .container .flex .yangiliklar .new .txt .bottom span:first-child span,
.attes .container .flex .yangiliklar .new .txt .bottom span:first-child span {
    margin-bottom: calc(0.2vw + 2px);
  }
}
@media (max-width: 1080px) {
  .fixed .left .link {
    width: calc(2vw + 22px);
    height: calc(2vw + 22px);
  }
  .fixed .left .link:hover i {
    font-size: calc(1.5vw + 15px);
  }
  .fixed .left .link span {
    display: none;
  }
  .fixed .left .link i {
    font-size: calc(1.2vw + 12px);
  }
  .surovlar .container .flex {
    gap: 3.5%;
  }
  .surovlar .container .flex .box {
    width: 31%;
    margin-bottom: calc(0.8vw + 10px);
  }
  .full-screen .section .swiper-button-prev:after,
.full-screen .section .swiper-button-next:after {
    font-size: calc(0.6vw + 10px);
  }
  .full-screen .section .swiper-button-prev,
.full-screen .section .swiper-button-next {
    background: var(--clr);
    width: calc(2vw + 40px);
    height: calc(2vw + 40px);
    top: calc(100% - (1.8vw + 85px));
  }
  .full-screen .section .swiper-button-next {
    margin-left: calc(4vw + 40px);
  }
  .full-screen .section .swiper-button-prev {
    margin-left: calc(-6vw - 80px);
  }
  .full-screen .section .section-wrapper .box .container .absolute {
    max-width: 600px;
  }
  .full-screen .section .section-wrapper .box .container .absolute h2 {
    font-size: calc(1vw + 16px);
    padding: calc(0.1vw + 5px) calc(0.2vw + 10px);
  }
  .full-screen .section .section-wrapper .box .container .absolute .txt {
    font-size: calc(1vw + 10px);
    padding: calc(0.8vw + 10px);
  }
  .full-screen .section .section-wrapper .box .container .absolute a {
    font-size: calc(1vw + 10px);
    padding: calc(0.8vw + 10px) calc(1vw + 80px);
  }
  .footer .opacity .container .left {
    width: 100%;
  }
  .footer .opacity .container .right,
.footer .opacity .container .center {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .full-screen .navbar .container .logo img {
    height: calc(4vw + 30px);
  }
  .full-screen .navbar .container .logo .name h1 {
    font-size: calc(1.5vw + 10px);
  }
  .full-screen .navbar .container .logo .name h2 {
    font-size: calc(1.1vw + 7px);
  }
  .full-screen .navbar .container .right {
    gap: calc(2vw + 1px);
  }
  .full-screen .navbar .container .right .adres:hover .manzil {
    display: flex;
  }
  .full-screen .navbar .container .right .adres i {
    font-size: calc(0.6vw + 20px);
  }
  .full-screen .navbar .container .right .adres .manzil {
    display: none;
    background: white;
    position: absolute;
    top: 90px;
    right: 80px;
    z-index: 1000;
    padding: 10px;
    width: 200px;
    border-radius: 2px;
  }
  .full-screen .navbar .container .right .adres .manzil > * {
    color: black;
  }
  .full-screen .navbar .container .right .adres .manzil .top {
    font-size: calc(0.7vw + 9px);
  }
  .full-screen .navbar .container .right .adres .manzil .bottom {
    font-size: calc(0.7vw + 8px);
  }
  .full-screen .navbar .container .right .adres:nth-child(2) .manzil {
    right: 30px;
  }
  .full-screen .navbar2 .container .links {
    width: 60%;
  }
  .surovlar .container .flex {
    gap: 4%;
  }
  .surovlar .container .flex .box {
    padding: calc(0.8vw + 10px);
    width: 48%;
    margin-bottom: calc(0.8vw + 10px);
    gap: calc(0.6vw + 5px);
  }
  .kitob-dars .container .flex {
    gap: 2%;
  }
  .kitob-dars .container .flex .box {
    width: 32%;
    border-radius: calc(0.5vw + 5px);
    height: calc(8.5vw + 75px);
  }
  .kitob-dars .container .flex .box p {
    font-size: calc(0.8vw + 8px);
  }
  .footer .opacity .container .right h2,
.footer .opacity .container .center h2 {
    font-size: calc(1.3vw + 13px);
  }
  .footer .opacity .container .right .apps a,
.footer .opacity .container .center .apps a {
    font-size: calc(1vw + 10px);
  }
}
@media (max-width: 520px) {
  .theme .links {
    gap: 1vw;
  }
  .surovlar .container .flex {
    gap: 0;
  }
  .surovlar .container .flex .box {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: calc(0.8vw + 10px);
  }
  .kitob-dars .container .flex {
    gap: 4%;
  }
  .kitob-dars .container .flex .box {
    width: 48%;
    border-radius: calc(0.5vw + 5px);
    height: calc(10vw + 100px);
  }
  .kitob-dars .container .flex .box p {
    font-size: calc(0.8vw + 8px);
  }
  .kitob-dars .container .flex .box:nth-child(even) {
    display: none;
  }
  .footer .opacity .container .logo img {
    height: calc(5.5vw + 45px);
  }
  .footer .opacity .container .logo .name h1 {
    font-size: calc(2vw + 20px);
  }
  .footer .opacity .container .logo .name h2 {
    font-size: calc(1.3vw + 8px);
  }
  .footer .opacity .container .right,
.footer .opacity .container .center {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .theme a {
    display: none;
  }
  .full-screen .navbar2 .container .links {
    width: 90%;
  }
  .full-screen .section .section-wrapper .box .container {
    margin-top: 12vh;
  }
  .full-screen .section .section-wrapper .box .container .absolute {
    max-width: 90%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
  }
  .full-screen .section .section-wrapper .box .container .absolute h2 {
    text-align: center;
  }
  .full-screen .section .section-wrapper .box .container .absolute .txt {
    width: 100%;
  }
  .news .container .flex .yangiliklar .new,
.attes .container .flex .yangiliklar .new {
    padding: 15px;
    max-width: 350px;
    margin: 0 auto;
    flex-direction: column;
    margin-bottom: calc(1.4vw + 8px);
  }
  .news .container .flex .yangiliklar .new .img,
.attes .container .flex .yangiliklar .new .img {
    width: 100%;
    height: 160px;
  }
  .news .container .flex .yangiliklar .new .img img,
.attes .container .flex .yangiliklar .new .img img {
    width: auto;
    height: 100%;
  }
  .news .container .flex .yangiliklar .new .txt,
.attes .container .flex .yangiliklar .new .txt {
    width: 100%;
    padding: 0;
    margin-top: 10px;
  }
  .kitob-dars .container .flex {
    max-width: 350px;
    margin: 0 auto;
  }
  .kitob-dars .container .flex .box {
    width: 100%;
    height: calc(13vw + 130px);
    margin-bottom: 4vw;
  }
  .kitob-dars .container .flex .box p {
    font-size: calc(1vw + 10px);
  }
}
.rahbariat .container .director:hover .title h2,
.rahbariat .container .zavuch:hover .title h2 {
  color: var(--clr);
}
.rahbariat .container .director .worker,
.rahbariat .container .director .people .worker,
.rahbariat .container .zavuch .worker,
.rahbariat .container .zavuch .people .worker {
  display: flex;
  background: whitesmoke;
  border-radius: 10px;
  overflow: hidden;
  padding: 40px;
  gap: 60px;
  transition: 0.2s ease;
  box-shadow: var(--smallShadow);
}
.rahbariat .container .director .worker:hover,
.rahbariat .container .director .people .worker:hover,
.rahbariat .container .zavuch .worker:hover,
.rahbariat .container .zavuch .people .worker:hover {
  box-shadow: var(--shadow);
  transform: translateY(-1%);
}
.rahbariat .container .director .worker .img,
.rahbariat .container .director .people .worker .img,
.rahbariat .container .zavuch .worker .img,
.rahbariat .container .zavuch .people .worker .img {
  max-height: 300px;
  width: 20%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rahbariat .container .director .worker .img img,
.rahbariat .container .director .people .worker .img img,
.rahbariat .container .zavuch .worker .img img,
.rahbariat .container .zavuch .people .worker .img img {
  height: 100%;
}
.rahbariat .container .director .worker .txt,
.rahbariat .container .director .people .worker .txt,
.rahbariat .container .zavuch .worker .txt,
.rahbariat .container .zavuch .people .worker .txt {
  width: 70%;
}
.rahbariat .container .director .worker .txt h2,
.rahbariat .container .director .people .worker .txt h2,
.rahbariat .container .zavuch .worker .txt h2,
.rahbariat .container .zavuch .people .worker .txt h2 {
  font-size: 25px;
  margin-bottom: 20px;
  color: var(--clr);
  filter: brightness(1);
}
.rahbariat .container .director .worker .txt .object,
.rahbariat .container .director .people .worker .txt .object,
.rahbariat .container .zavuch .worker .txt .object,
.rahbariat .container .zavuch .people .worker .txt .object {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rahbariat .container .director .worker .txt .object .value,
.rahbariat .container .director .people .worker .txt .object .value,
.rahbariat .container .zavuch .worker .txt .object .value,
.rahbariat .container .zavuch .people .worker .txt .object .value {
  display: flex;
  justify-content: space-between;
}
.rahbariat .container .director .worker .txt .object .value p,
.rahbariat .container .director .people .worker .txt .object .value p,
.rahbariat .container .zavuch .worker .txt .object .value p,
.rahbariat .container .zavuch .people .worker .txt .object .value p {
  width: 48%;
  font-size: 18px;
  width: 200px;
  opacity: 0.8;
}
.rahbariat .container .director .worker .txt .object .value p:first-child,
.rahbariat .container .director .people .worker .txt .object .value p:first-child,
.rahbariat .container .zavuch .worker .txt .object .value p:first-child,
.rahbariat .container .zavuch .people .worker .txt .object .value p:first-child {
  font-weight: 600;
  opacity: 1;
}
.rahbariat .container .zavuch .who h2 {
  width: 250px;
}
.rahbariat .container .zavuch .people {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.rahbariat .container .zavuch .people .worker {
  flex-direction: column;
  gap: 30px;
  width: 33%;
}
.rahbariat .container .zavuch .people .worker .img {
  width: 100%;
  max-height: 300px;
}
.rahbariat .container .zavuch .people .worker .img img {
  height: 100%;
}
.rahbariat .container .zavuch .people .worker .txt {
  width: 100%;
  padding: 0;
}
.rahbariat .container .director .worker .txt .object .value {
  justify-content: flex-start;
  gap: 50px;
}

@media (max-width: 1300px) {
  .rahbariat .container .director .worker .img,
.rahbariat .container .zavuch .worker .img {
    height: 100%;
    max-height: 300px;
    min-width: 30%;
    overflow: hidden;
  }
  .rahbariat .container .director .worker .img img,
.rahbariat .container .zavuch .worker .img img {
    width: 100%;
    height: 100%;
  }
  .rahbariat .container .director .worker .txt h2,
.rahbariat .container .zavuch .worker .txt h2 {
    font-size: calc(1vw + 12px);
  }
  .rahbariat .container .director .worker .txt .object,
.rahbariat .container .zavuch .worker .txt .object {
    gap: calc(0.5vw + 1px);
  }
  .rahbariat .container .director .worker .txt .object .value,
.rahbariat .container .zavuch .worker .txt .object .value {
    gap: calc(1vw + 10px);
  }
  .rahbariat .container .director .worker .txt .object .value p,
.rahbariat .container .zavuch .worker .txt .object .value p {
    width: 50%;
    font-size: calc(0.8vw + 8px);
  }
  .rahbariat .container .zavuch .people {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2%;
    max-width: 900px;
    margin: 0 auto;
  }
  .rahbariat .container .zavuch .people .worker {
    width: 48%;
    margin-bottom: 30px;
    padding: 30px;
    gap: 20px;
  }
  .rahbariat .container .zavuch .people .worker .txt h2 {
    font-size: calc(1vw + 12px);
  }
  .rahbariat .container .zavuch .people .worker .txt .object {
    gap: calc(0.5vw + 1px);
  }
  .rahbariat .container .zavuch .people .worker .txt .object .value {
    gap: calc(1vw + 10px);
  }
  .rahbariat .container .zavuch .people .worker .txt .object .value p {
    width: 50%;
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  .rahbariat .container .director .worker,
.rahbariat .container .zavuch .worker {
    max-width: 350px;
    padding: 20px;
    gap: calc(3vw + 10px);
    flex-direction: column;
    margin: 0 auto;
  }
  .rahbariat .container .director .worker .img,
.rahbariat .container .zavuch .worker .img {
    height: 300px;
    width: 100%;
  }
  .rahbariat .container .director .worker .img img,
.rahbariat .container .zavuch .worker .img img {
    width: auto;
    height: 100%;
  }
  .rahbariat .container .director .worker,
.rahbariat .container .director .people .worker,
.rahbariat .container .zavuch .worker,
.rahbariat .container .zavuch .people .worker {
    width: 100%;
    margin-bottom: 30px;
    padding: 20px;
    gap: 20px;
  }
  .rahbariat .container .director .worker .img,
.rahbariat .container .director .people .worker .img,
.rahbariat .container .zavuch .worker .img,
.rahbariat .container .zavuch .people .worker .img {
    height: 100%;
  }
  .rahbariat .container .director .worker .txt,
.rahbariat .container .director .people .worker .txt,
.rahbariat .container .zavuch .worker .txt,
.rahbariat .container .zavuch .people .worker .txt {
    width: 100%;
  }
  .rahbariat .container .director .worker .txt h2,
.rahbariat .container .director .people .worker .txt h2,
.rahbariat .container .zavuch .worker .txt h2,
.rahbariat .container .zavuch .people .worker .txt h2 {
    font-size: calc(1vw + 12px);
  }
  .rahbariat .container .director .worker .txt .object,
.rahbariat .container .director .people .worker .txt .object,
.rahbariat .container .zavuch .worker .txt .object,
.rahbariat .container .zavuch .people .worker .txt .object {
    gap: calc(0.5vw + 1px);
  }
  .rahbariat .container .director .worker .txt .object .value,
.rahbariat .container .director .people .worker .txt .object .value,
.rahbariat .container .zavuch .worker .txt .object .value,
.rahbariat .container .zavuch .people .worker .txt .object .value {
    gap: calc(1vw + 10px);
  }
  .rahbariat .container .director .worker .txt .object .value p,
.rahbariat .container .director .people .worker .txt .object .value p,
.rahbariat .container .zavuch .worker .txt .object .value p,
.rahbariat .container .zavuch .people .worker .txt .object .value p {
    width: 50%;
    font-size: 16px;
  }
  .rahbariat .container .zavuch .people {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2%;
    max-width: 900px;
    margin: 0 auto;
  }
}
@media (max-width: 450px) {
  .rahbariat .container .director .worker .img,
.rahbariat .container .director .people .worker .img,
.rahbariat .container .zovuch .worker .img,
.rahbariat .container .zovuch .people .worker .img {
    height: 200px;
  }
}
.number {
  box-shadow: var(--shadow);
}
.number .container {
  padding: 20px 0;
  display: flex;
  justify-content: center;
}
.number .container .flex {
  display: flex;
  align-items: center;
}
.number .container .flex h2 {
  font-weight: 600;
  padding: 0 20px;
  z-index: 10;
}
.number .container .flex h2.active {
  color: var(--clr);
}
.number .container .flex svg {
  height: 80px;
  position: absolute;
  z-index: -10;
  transform: translateY(-51%) translateX(-4%);
  transition: 0.5s;
}
.number .container .flex svg path {
  fill: var(--clr);
}

.pupils {
  padding: 60px 0;
}
.pupils .container .bolim {
  display: none;
  margin-bottom: 50px;
}
.pupils .container .bolim .select {
  border: 2px solid black;
  border-radius: 5px;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pupils .container .bolim .select > span {
  font-size: 30px;
  transition: 0.2s;
}
.pupils .container .bolim .select.active {
  border-color: var(--clr);
}
.pupils .container .bolim .select.active > span {
  transform: rotate(-180deg);
  color: var(--clr);
}
.pupils .container .bolim #topNavigation.display {
  display: flex;
  -webkit-animation: 0.1s openlinks linear 1;
          animation: 0.1s openlinks linear 1;
}
.pupils .container .bolim #topNavigation {
  display: none;
  flex-direction: column;
  gap: 2px;
  position: absolute;
  width: 95%;
  z-index: 100;
  background: white;
  border-radius: 5px;
  transform-origin: top;
  box-shadow: var(--shadow);
}
.pupils .container .bolim #topNavigation span {
  color: black;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 18px;
  transition: 0.1s;
  cursor: pointer;
}
.pupils .container .bolim #topNavigation span.activ {
  color: white;
  background: var(--clr);
}
.pupils .container .bolim #topNavigation span.noHover:hover {
  background: var(--clr);
  color: white;
}
.pupils .container .bolim #topNavigation span:hover {
  background-color: #eaeaea;
  color: black;
}
.pupils .container > .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.pupils .container > .flex .left {
  width: 70%;
}
.pupils .container > .flex .left .classes {
  display: none;
}
.pupils .container > .flex .left .classes.display {
  display: inline-block;
}
.pupils .container > .flex .left .classes h1 {
  margin-bottom: 30px;
}
.pupils .container > .flex .left .classes > .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4%;
}
.pupils .container > .flex .left .classes > .flex .class {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid black;
  margin-bottom: 3%;
  transition: 0.2s;
  box-shadow: var(--smallShadow);
}
.pupils .container > .flex .left .classes > .flex .class.width {
  width: 100%;
}
.pupils .container > .flex .left .classes > .flex .class.width:hover {
  transform: none;
}
.pupils .container > .flex .left .classes > .flex .class:hover {
  transform: scale(1.02);
  border-color: var(--clr);
  box-shadow: var(--shadow);
}
.pupils .container > .flex .left .classes > .flex .class:hover h2 {
  background: var(--clr);
  color: white;
}
.pupils .container > .flex .left .classes > .flex .class .img {
  width: 100%;
  overflow: hidden;
}
.pupils .container > .flex .left .classes > .flex .class .img img {
  width: 100%;
  transform: scale(1.21);
  height: 101.5%;
  margin-top: -0.7%;
}
.pupils .container > .flex .left .classes > .flex .class h2 {
  width: 100%;
  padding: 5px 0;
  text-align: center;
  transition: 0.3s;
  border: 1px solid black;
}
.pupils .container > .flex .left .win {
  width: 100%;
  gap: 3%;
  flex-wrap: wrap;
  display: none;
}
.pupils .container > .flex .left .win.win.negative {
  display: flex;
}
.pupils .container > .flex .left .win .pupil {
  width: 30%;
  margin-bottom: 2%;
  border-radius: 5px;
  box-shadow: var(--smallShadow);
  transition: 0.2s ease-in-out;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  -webkit-animation: 0.3s animate ease-in 1;
          animation: 0.3s animate ease-in 1;
}
@-webkit-keyframes animate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.pupils .container > .flex .left .win .pupil:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}
.pupils .container > .flex .left .win .pupil:hover .txt h2 {
  color: var(--clr);
  filter: brightness(0.9);
}
.pupils .container > .flex .left .win .pupil.book-none {
  display: none;
}
.pupils .container > .flex .left .win .pupil .img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pupils .container > .flex .left .win .pupil .img img {
  height: 100%;
  transition: 0.3s ease-in;
}
.pupils .container > .flex .left .win .pupil .txt {
  padding: 10px 20px 15px 20px;
}
.pupils .container > .flex .left .win .pupil .txt h2 {
  font-size: 20px;
}
.pupils .container > .flex .left .win .pupil .txt .soha {
  display: none;
}
.pupils .container > .flex .right {
  width: 28%;
  background: whitesmoke;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.pupils .container > .flex .right h2 {
  margin-bottom: 15px;
}
.pupils .container > .flex .right #rightNavigation {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pupils .container > .flex .right #rightNavigation span {
  color: black;
  padding: 12px 10px;
  border-radius: 5px;
  font-size: 18px;
  transition: 0.1s;
  cursor: pointer;
}
.pupils .container > .flex .right #rightNavigation span.activ {
  color: white;
  background: var(--clr);
}
.pupils .container > .flex .right #rightNavigation span.noHover:hover {
  background: var(--clr);
  color: white;
}
.pupils .container > .flex .right #rightNavigation span:hover {
  background-color: #eaeaea;
  color: black;
}

@media (max-width: 1400px) {
  .pupils .container .flex .left .win .pupil {
    width: 48%;
  }
}
@media (max-width: 1080px) {
  .pupils .container .bolim {
    display: block;
  }
  .pupils .container .flex .left {
    width: 100%;
  }
  .pupils .container .flex .left .classes > .flex .class:hover {
    transform: none;
  }
  .pupils .container .flex .left .classes > .flex .class:hover h2 {
    background: transparent;
    color: var(--clr);
  }
  .pupils .container .flex .left .win .pupil {
    width: 48%;
  }
  .pupils .container .flex .right {
    display: none;
  }
}
@media (max-width: 768px) {
  .pupils .container .bolim .select h2 {
    font-size: calc(1vw + 15px);
  }
  .pupils .container .flex .left .win .pupil .img {
    height: calc(12vw + 130px);
  }
  .pupils .container .flex .left .win .pupil .txt h2 {
    font-size: calc(0.8vw + 12px);
  }
}
@media (max-width: 500px) {
  .pupils .container .bolim .select {
    padding: calc(0.5vw + 5px);
  }
  .pupils .container .flex .left .classes > .flex .class {
    width: 100%;
  }
  .pupils .container .flex .left .win .pupil {
    width: 96%;
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: calc(5px + 2vw);
  }
  .pupils .container .flex .left .win .pupil .img {
    height: calc(15vw + 150px);
  }
}
.contact .container h1 {
  text-align: center;
  margin: 30px auto;
}
.contact .container .flex {
  display: flex;
  justify-content: space-between;
}
.contact .container .flex .left,
.contact .container .flex .right {
  width: 48%;
}
.contact .container .flex .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact .container .flex .left .links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact .container .flex .left .links a {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact .container .flex .left .links a:hover {
  color: var(--clr);
}
.contact .container .flex .left .links a:hover i {
  color: var(--clr);
}
.contact .container .flex .right iframe {
  width: 100%;
}

@media (max-width: 1080px) {
  .contact .container .flex {
    max-width: 900px;
    flex-direction: column-reverse;
    margin: 0 auto;
    gap: 20px;
  }
  .contact .container .flex .left,
.contact .container .flex .right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .contact .container .flex .right iframe {
    height: calc(120px + 35vw);
  }
}
.faxr .faxr-wrapper {
  padding: 5px 0;
  padding-left: 5px;
}
.faxr .faxr-wrapper .box {
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: var(--smallShadow);
}
.faxr .faxr-wrapper .box:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.faxr .faxr-wrapper .box .img {
  width: 100%;
}
.faxr .faxr-wrapper .box .img img {
  width: 100%;
}
.faxr .faxr-wrapper .box p {
  font-weight: 600;
  font-size: 18px;
  margin-top: 10px;
}

@media (max-width: 600px) and (min-width: 400px) {
  .faxr .container .box p {
    font-size: 16px;
  }
}
.attes {
  padding: 50px 0;
}
.attes .container .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.attes .container .flex .atteslar,
.attes .container .flex .toplam {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.attes .container .flex .atteslar .box,
.attes .container .flex .toplam .box {
  width: 48%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  transition: 0.3s;
  box-shadow: var(--smallShadow);
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 3%;
}
.attes .container .flex .atteslar .box .img,
.attes .container .flex .toplam .box .img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 5px;
  height: 300px;
}
.attes .container .flex .atteslar .box .img img,
.attes .container .flex .toplam .box .img img {
  height: 100%;
}
.attes .container .flex .atteslar .box:hover,
.attes .container .flex .toplam .box:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.attes .container .flex .atteslar .box:hover h3,
.attes .container .flex .toplam .box:hover h3 {
  color: var(--clr);
  filter: brightness(1);
}
.attes .container .flex .atteslar .box h3,
.attes .container .flex .toplam .box h3 {
  font-weight: 600;
  font-size: 20px;
  margin-top: 10px;
  transition: 0.2s;
}
.attes .container .flex .toplam .box h3,
.attes .container .flex .toplam .box p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 10px;
}
.attes .container .flex .txt {
  width: 65%;
}
.attes .container .flex .txt h2 {
  font-size: 30px;
  margin-bottom: 30px;
}
.attes .container .flex .txt p {
  font-size: 18px;
}

@media (max-width: 1300px) {
  .attes {
    padding: calc(4vw + 15px) 0;
  }
  .attes .container .flex .atteslar,
.attes .container .flex .toplam {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .attes .container .flex .atteslar .box,
.attes .container .flex .toplam .box {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 3%;
  }
}
@media (max-width: 600px) {
  .attes .container .flex .atteslar .box .img,
.attes .container .flex .toplam .box .img {
    height: calc(18vw + 180px);
  }
}
.question .container .flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.question .container .box,
.question .container .flex .box {
  width: 49%;
  height: 100px;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  margin-bottom: 2%;
  border-radius: 5px;
  transition: 0.2s;
  box-shadow: var(--smallShadow);
}
.question .container .box:hover,
.question .container .flex .box:hover {
  transform: scale(1.02);
}
.question .container .box .img,
.question .container .flex .box .img {
  height: 100%;
  overflow: hidden;
  border-radius: 5px;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.question .container .box .img img,
.question .container .flex .box .img img {
  height: 100%;
}
.question .container > h2 {
  margin-bottom: 20px;
}
.question .container > .box {
  width: 100%;
  justify-content: center;
}

.kitob .container .bolim {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 40px 0;
}
.kitob .container .bolim h2 {
  width: 50%;
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: 0.2s ease;
}
.kitob .container .bolim h2.activ {
  background: var(--clr);
  color: white;
}
.kitob .container .bolim h2.activ {
  background: var(--clr);
  color: white;
}
.kitob .container .bolim h2.activ:hover {
  background: var(--clr);
  color: white;
}
.kitob .container .bolim h2:hover {
  background: rgba(0, 0, 0, 0.1);
}
.kitob .container .bolim .br {
  height: 1px;
  width: 40px;
  background: var(--clr);
  transform-origin: top;
  transform: rotate(90deg);
}
.kitob .container .boshqa {
  display: none;
}
.kitob .container .boshqa.activ {
  display: flex;
}
.kitob .container .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: none;
}
.kitob .container .flex.activ {
  display: flex;
}
.kitob .container .flex .left {
  width: 65%;
}
.kitob .container .flex .left {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2%;
}
.kitob .container .flex .left.none {
  display: flex;
}
.kitob .container .flex .left .box.book-none {
  display: inline-block;
}
.kitob .container .flex .left .box {
  width: 31%;
  border-radius: 15px;
  background: #ffffff;
  margin-bottom: 2%;
  display: none;
  transition: 0.3s;
  box-shadow: var(--smallShadow);
}
.kitob .container .flex .left .box:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.kitob .container .flex .left .box .img {
  width: 100%;
  overflow: hidden;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  max-height: 410px;
}
.kitob .container .flex .left .box .img img {
  width: 100%;
}
.kitob .container .flex .left .box p {
  margin: 15px 20px;
  font-weight: 500;
  font-size: 20px;
}
.kitob .container .flex .left .box p:nth-child(3) {
  margin: 20px;
  font-weight: 500;
  font-size: 18px;
  color: orange;
}
.kitob .container .flex .left .box span {
  display: none;
}
.kitob .container .flex .right {
  width: 33%;
  background: whitesmoke;
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kitob .container .flex .right span {
  color: black;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 18px;
  transition: 0.1s;
  cursor: pointer;
}
.kitob .container .flex .right span.activ {
  color: white;
  background: var(--clr);
}
.kitob .container .flex .right span.noHover:hover {
  background: var(--clr);
  color: white;
}
.kitob .container .flex .right span:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: black;
}

.mult .container .multif:nth-child(2) {
  margin-top: 50px;
}
.mult .container .multif .name {
  padding: 10px 20px;
  background: var(--clr);
  transform: skew(-15deg);
  margin-bottom: 20px;
  z-index: -100;
}
.mult .container .multif .name h2 {
  transform: skew(15deg);
  color: white;
  display: flex;
}
.mult .container .multif .name h2 > span {
  display: flex;
  align-items: center;
  color: red;
}
.mult .container .multif .name h2 > span span {
  margin: 0 8px 0 4px;
  font-variation-settings: "FILL" 1;
}
.mult .container .multif > h2 {
  text-align: center;
  margin: 20px;
}
.mult .container .multif .multifilm {
  padding-top: 100px;
  margin-top: -100px;
}
.mult .container .multif .multifilm .swiper-pagination {
  transform: scale(1.5);
  position: absolute;
  top: 107px;
  z-index: 10;
}
.mult .container .multif .multifilm .swiper-pagination-bullet {
  background: black;
}
.mult .container .multif .multifilm .swiper-pagination-bullet {
  opacity: 0.8;
  transition: 0.1s ease;
}
.mult .container .multif .multifilm .swiper-pagination-bullet:hover {
  transform: scale(1.5);
  margin: auto 6px;
}
.mult .container .multif .multifilm .swiper-pagination-bullet-active {
  opacity: 1;
  filter: brightness(1.8);
  background: var(--clr);
}
.mult .container .multif .multifilm .swiper-button-next,
.mult .container .multif .multifilm .swiper-button-prev {
  top: 75px;
  z-index: 100;
}
.mult .container .multif .multifilm .swiper-button-next .icon,
.mult .container .multif .multifilm .swiper-button-prev .icon {
  font-variation-settings: "FILL" 1;
  color: white;
  padding: 5px;
  border: 1px solid white;
  font-size: 28px;
  user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.mult .container .multif .multifilm .swiper-button-next .icon:hover,
.mult .container .multif .multifilm .swiper-button-prev .icon:hover {
  color: var(--clr);
  background: white;
}
.mult .container .multif .multifilm .swiper-button-prev {
  left: auto;
  right: 100px;
}
.mult .container .multif .multifilm .swiper-button-prev .icon {
  transform: rotate(-180deg);
}
.mult .container .multif .multifilm .swiper-button-next {
  right: 40px;
}
.mult .container .multif .multifilm .swiper-button-next::after,
.mult .container .multif .multifilm .swiper-button-prev::after {
  display: none;
}
.mult .container .multif .multifilm .swiper-wrapper .box .video {
  width: 100%;
}
.mult .container .multif .multifilm .swiper-wrapper .box .video iframe {
  width: 100%;
  height: 300px;
}

@media (max-width: 650px) {
  .mult .container .multif .multifilm .swiper-pagination,
.mult .container .multif .multifilm .swiper-button-next,
.mult .container .multif .multifilm .swiper-button-prev {
    display: none;
  }
}
.prezident .container .tartib {
  margin: 30px 0;
}
.prezident .container .tartib h2 {
  font-size: 30px;
  font-weight: 600;
}
.prezident .container .flex {
  display: flex;
  justify-content: space-evenly;
}
.prezident .container .flex:hover .left h2 {
  background: var(--clr);
}
.prezident .container .flex:hover .left h2::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--clr);
  opacity: 0.3;
  border-radius: 50%;
  z-index: -100;
  -webkit-animation: 0.5s back ease 1;
          animation: 0.5s back ease 1;
}
@-webkit-keyframes back {
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes back {
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.prezident .container .flex:hover .left h2 span {
  color: white;
}
.prezident .container .flex .left {
  width: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.prezident .container .flex .left .hr {
  width: 2px;
  margin-top: 50px;
  height: calc(100% - 50px);
  background: var(--clr);
}
.prezident .container .flex .left .hr::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--clr);
  z-index: -100;
  transform: translate(-45%, -50%);
}
.prezident .container .flex .left h2 {
  position: absolute;
  width: 100px;
  height: 100px;
  background: white;
  border: 2px solid var(--clr);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  font-size: 20px;
  border-radius: 50%;
  transition: 0.2s;
}
.prezident .container .flex .left h2 span {
  color: black;
  transition: 0.2s;
}
.prezident .container .flex .right {
  width: 80%;
  border-bottom: 1px solid #333;
}
.prezident .container .flex .right .aylana-center {
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.prezident .container .flex .right .aylana-center h3 {
  width: 100%;
  background: var(--clr);
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.prezident .container .flex .right .qoidalar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5%;
}
.prezident .container .flex .right .qoidalar .box {
  width: 30%;
  margin-bottom: 3%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.prezident .container .flex .right .qoidalar .box:hover p span:first-child {
  color: var(--clr);
}
.prezident .container .flex .right .qoidalar .box p {
  font-size: 18px;
}
.prezident .container .flex .right .qoidalar .box p span {
  opacity: 0.9;
}
.prezident .container .flex .right .qoidalar .box p span:first-child {
  font-weight: 600;
  opacity: 1;
}

.pre-about {
  padding: 120px 0 60px 0;
  margin-top: 100px;
  background: url(https://portal.piima.uz/images/portal/contur-1.png) no-repeat top center, url(https://portal.piima.uz/images/portal/contur-2.png) no-repeat top center;
  background-size: 130%;
}
.pre-about .container h1 {
  font-size: 35px;
  margin-bottom: 40px;
}
.pre-about .container .txt-img {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.pre-about .container .txt-img p {
  width: 60%;
  font-size: 22px;
  line-height: 1.5;
}
.pre-about .container .txt-img img {
  width: 35%;
}

.pre-shareit {
  padding: 60px 0;
}
.pre-shareit .container .mavzu:hover h1::before {
  transform: scaleX(0.2);
}
.pre-shareit .container .flex {
  display: flex;
  justify-content: space-evenly;
}
.pre-shareit .container .flex .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.pre-shareit .container .flex .box svg {
  stroke: black;
}
.pre-shareit .container .flex .box .txt {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pre-shareit .container .flex .box .txt h2,
.pre-shareit .container .flex .box .txt p {
  text-align: center;
}

.pre-contact {
  background: #e1ddda;
  padding: 60px 0;
}
.pre-contact .container .mavzu h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
}
.pre-contact .container .flex {
  display: flex;
  justify-content: space-evenly;
}
.pre-contact .container .flex .box {
  min-width: 29%;
  background: white;
  padding: 20px;
}
.pre-contact .container .flex .box p {
  font-size: 20px;
  color: var(--clr);
  margin-bottom: 5px;
}

@media (max-width: 1300px) {
  .prezident .container .tartib {
    margin: calc(1.5vw + 10px) 0;
  }
  .prezident .container .tartib h2 {
    font-size: calc(1.2vw + 12px);
  }
}
@media (max-width: 1080px) {
  .prezident .container .flex .right .qoidalar {
    gap: 4%;
  }
  .prezident .container .flex .right .qoidalar .box {
    width: 48%;
  }
  .pre-about {
    background-size: auto;
  }
  .pre-about .container .txt-img {
    flex-direction: column-reverse;
    gap: calc(1vw + 10px);
  }
  .pre-about .container .txt-img img,
.pre-about .container .txt-img p {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .pre-shareit .container .flex {
    flex-wrap: wrap;
    gap: 4%;
  }
  .pre-shareit .container .flex .box {
    width: 48%;
    margin-bottom: calc(1.2vw + 10px);
  }
  .pre-about {
    padding: 100px 0 calc(3vw + 30px);
  }
  .pre-about .container h1 {
    font-size: calc(1vw + 20px);
  }
  .pre-shareit,
.pre-contact {
    padding: calc(3vw + 30px) 0;
  }
  .pre-shareit .container .mavzu h2,
.pre-contact .container .mavzu h2 {
    font-size: calc(1vw + 20px);
  }
}
@media (max-width: 768px) {
  .prezident .container .flex .right .qoidalar {
    gap: 0;
    margin-top: calc(1vw + 10px);
  }
  .prezident .container .flex .right .qoidalar .box {
    width: 100%;
  }
  .pre-about .container .txt-img p {
    font-size: calc(1.5vw + 10px);
  }
  .pre-contact .container .flex {
    flex-wrap: wrap;
    gap: 4%;
  }
  .pre-contact .container .flex .box {
    width: 48%;
    margin-bottom: calc(1.2vw + 10px);
  }
  .pre-contact .container .flex .box p {
    font-size: 18px;
  }
}
@media (max-width: 550px) {
  .pre-contact .container .flex {
    gap: calc(1vw + 10px);
  }
  .pre-contact .container .flex .box {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    margin-bottom: calc(1.2vw + 10px);
  }
  .pre-shareit .container .flex .box .txt h2 {
    font-size: calc(1vw + 16px);
  }
  .pre-shareit .container .flex .box .txt p {
    font-size: calc(0.8vw + 11px);
  }
}
@media (max-width: 500px) {
  .prezident .container .flex .left h2 {
    display: none;
  }
  .prezident .container .flex .right .aylana-center {
    width: calc(100% + 50px);
    margin-left: -50px;
  }
  .pre-shareit .container .flex {
    gap: 0;
  }
  .pre-shareit .container .flex .box {
    width: 100%;
    margin-bottom: calc(1.5w + 10px);
  }
}
.natija .container .flex {
  display: flex;
  justify-content: space-between;
}
.natija .container .flex .left {
  width: 65%;
}
.natija .container .flex .left img {
  width: 100%;
}
.natija .container .flex .left .txt {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.natija .container .flex .left .txt > h3 {
  font-weight: 600;
}
.natija .container .flex .left .txt p {
  font-size: 18px;
}
.natija .container .flex .left .txt p span {
  font-weight: 600;
  font-size: 20px;
}
.natija .container .flex .left .txt p a {
  color: var(--clr);
  font-weight: 600;
}
.natija .container .flex .left .txt p a:hover {
  text-decoration: underline;
}

.fan {
  padding: 50px 0;
}
.fan .container .flex {
  display: flex;
  justify-content: space-between;
}
.fan .container .flex .left {
  width: 65%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 3.5%;
}
.fan .container .flex .left .box {
  border-radius: 5px;
  background: whitesmoke;
  width: 31%;
  padding: 10px;
  box-shadow: var(--smallShadow);
  transition: 0.2s ease;
}
.fan .container .flex .left .box:hover {
  transform: translateY(-2%);
  box-shadow: var(--shadow);
}
.fan .container .flex .left .box:hover p {
  color: var(--clr);
  filter: brightness(1);
}
.fan .container .flex .left .box .img {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.fan .container .flex .left .box .img img {
  width: 100%;
}
.fan .container .flex .left .box p {
  margin-top: 10px;
}

@media (max-width: 1300px) {
  .fan {
    padding: calc(3vw + 20px) 0;
  }
  .fan .container .flex .left {
    width: 100%;
  }
  .fan .container .flex .left .box {
    margin-bottom: calc(1vw + 10px);
  }
}
@media (max-width: 1080px) {
  .fan .container .flex .left .box {
    width: 48%;
  }
  .fan .container .flex .left .box .img {
    height: 24vw;
  }
  .fan .container .flex .left .box p {
    font-size: calc(1.1vw + 9px);
  }
}
@media (max-width: 450px) {
  .fan .container .flex .left .box {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: calc(2vw + 5px);
  }
  .fan .container .flex .left .box .img {
    height: calc(15vw + 100px);
  }
}
.tuzilma .container .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.tuzilma .container .flex .left {
  width: 65%;
}
.tuzilma .container .flex .left img {
  width: 100%;
}

.inform,
.inform1,
.inform2 {
  color: #000C2D;
  font-size: var(--22size);
  position: fixed;
  bottom: 12%;
  right: 7%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  z-index: 1000;
}
.inform .halqa,
.inform1 .halqa,
.inform2 .halqa {
  width: 100%;
  height: 100%;
  background: var(--clr);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-animation: 3s call linear infinite;
          animation: 3s call linear infinite;
}
.inform .halqa i,
.inform1 .halqa i,
.inform2 .halqa i {
  font-size: 25px;
  color: white;
}

.halqa::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--clr);
  opacity: 0.3;
  z-index: -1;
  -webkit-animation: 3s afterCall linear infinite;
          animation: 3s afterCall linear infinite;
}

.inform:after,
.inform1:after,
.inform2:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--clr);
  top: -1px;
  left: -1px;
  -webkit-animation: 3s ellCall linear infinite;
          animation: 3s ellCall linear infinite;
}

.inform1:after {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

.inform2:after {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}

@-webkit-keyframes call {
  10% {
    transform: scale(1.15);
  }
  20% {
    transform: scale(1);
  }
}

@keyframes call {
  10% {
    transform: scale(1.15);
  }
  20% {
    transform: scale(1);
  }
}
@-webkit-keyframes afterCall {
  16.6%, 50%, 83.3% {
    transform: scale(1.3);
  }
  33.3%, 66.6%, 100% {
    transform: scale(1);
  }
}
@keyframes afterCall {
  16.6%, 50%, 83.3% {
    transform: scale(1.3);
  }
  33.3%, 66.6%, 100% {
    transform: scale(1);
  }
}
@-webkit-keyframes ellCall {
  0% {
    opacity: 0;
  }
  20% {
    transform: scale(1.4);
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
@keyframes ellCall {
  0% {
    opacity: 0;
  }
  20% {
    transform: scale(1.4);
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
.loyiha .container .topNav {
  display: flex;
  box-shadow: var(--smallShadow);
  width: 100%;
  justify-content: space-around;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 50px;
  align-items: center;
  border-radius: 10px;
  transition: 0.2s ease;
}
.loyiha .container .topNav * {
  transition: 0.2s ease;
}
.loyiha .container .topNav .box {
  border-radius: 10px;
  width: 33.3%;
  text-align: center;
  height: 100px;
  padding: 0 20px;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.loyiha .container .topNav .box span {
  font-size: 30px;
}
.loyiha .container .topNav .box:hover {
  background: rgba(0, 0, 0, 0.05);
}
.loyiha .container .topNav .box.active {
  background: var(--clr);
  color: white;
}
.loyiha .container .topNav .box.active span {
  color: var(--clr);
  filter: brightness(2);
  transform: rotate(90deg);
}
.loyiha .container .asos a {
  font-size: 18px;
}
.loyiha .container .asos a:hover {
  color: var(--clr);
}
.loyiha .container .view h3 {
  font-weight: 600;
  margin-bottom: 30px;
}
.loyiha .container .view .txt {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.loyiha .container .view .txt p {
  font-size: 18px;
}
.loyiha .container .view .txt ol p {
  font-weight: 600;
  margin-bottom: 20px;
}
.loyiha .container .view .txt ol li {
  list-style-position: inside;
  margin-bottom: 10px;
}
.loyiha .container .flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 3%;
  display: none;
}
.loyiha .container .flex.activ {
  display: flex;
  -webkit-animation: 0.3s animate ease-in 1;
          animation: 0.3s animate ease-in 1;
}
.loyiha .container .flex .box2 {
  display: flex;
  flex-direction: row;
  height: 250px;
  padding: 30px;
  gap: 20px;
  border-radius: 15px;
  width: 47%;
  box-shadow: var(--smallShadow);
  transition: 0.2s;
  margin-bottom: 30px;
}
.loyiha .container .flex .box2:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2%);
}
.loyiha .container .flex .box2 img {
  height: 100%;
  border-radius: 5px;
}
.loyiha .container .flex .box2 .txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.loyiha .container .flex .box2 .txt .name {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.loyiha .container .flex .box2 .txt .name h1 {
  font-size: 30px;
  font-weight: 600;
}
.loyiha .container .flex .box2 .txt .name p {
  font-size: 20px;
  font-weight: 300;
}
.loyiha .container .flex .box2 .txt span {
  font-weight: 600;
  font-size: 18px;
}
.loyiha .container .flex .box {
  width: 48.5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-height: 220px;
  padding: 35px;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: var(--smallShadow);
  transition: 0.2s;
}
.loyiha .container .flex .box:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2%);
}
.loyiha .container .flex .box .img {
  width: 35%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.loyiha .container .flex .box .img img {
  height: 100%;
}
.loyiha .container .flex .box .txt {
  width: 60%;
}
.loyiha .container .flex .box .txt h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.loyiha .container .flex .box .txt p {
  font-size: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

@media (max-width: 1080px) {
  .loyiha .container .flex .box {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .loyiha .container .flex .box {
    flex-direction: column;
    max-height: none;
    gap: calc(2vw + 10px);
    padding: calc(1.5vw + 10px);
  }
  .loyiha .container .flex .box .img {
    width: 100%;
    height: calc(12vw + 120px);
    max-width: 300px;
  }
  .loyiha .container .flex .box .txt {
    width: 100%;
  }
  .loyiha .container .flex .box .txt h3 {
    text-align: center;
  }
}
@media (max-width: 1300px) {
  .loyiha .container .flex {
    gap: 0;
  }
  .loyiha .container .flex .box2 {
    width: 100%;
  }
  .loyiha .container .flex .box2 .txt {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 900px) {
  .loyiha .container .topNav {
    overflow: visible;
    justify-content: flex-start;
    height: auto;
  }
  .loyiha .container .topNav .box {
    width: 50%;
    font-size: calc(1.1vw + 11px);
    height: calc(5vw + 50px);
  }
  .loyiha .container .flex .box2 .txt {
    flex-direction: column;
    align-items: flex-start;
  }
  .loyiha .container .flex .box2 .txt .name h1 {
    font-size: calc(2vw + 15px);
  }
  .loyiha .container .flex .box2 .txt .name p {
    font-size: calc(1.2vw + 10px);
  }
}
@media (max-width: 550px) {
  .inform,
.inform1,
.inform2,
.inform::after,
.inform1::after,
.inform2::after {
    width: calc(3vw + 60px);
    height: calc(3vw + 60px);
  }
  .inform .halqa i,
.inform1 .halqa i,
.inform2 .halqa i,
.inform::after .halqa i,
.inform1::after .halqa i,
.inform2::after .halqa i {
    font-size: calc(0.8vw + 16px);
  }
  .inform .halqa::after,
.inform1 .halqa::after,
.inform2 .halqa::after,
.inform::after .halqa::after,
.inform1::after .halqa::after,
.inform2::after .halqa::after {
    width: calc(3vw + 60px);
    height: calc(3vw + 60px);
  }
  .loyiha .container .topNav .box {
    width: 100%;
    font-size: calc(1.1vw + 11px);
    height: calc(4vw + 40px);
  }
  .loyiha .container .flex .box2 {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: calc(1.5vw + 15px);
  }
  .loyiha .container .flex .box2 .txt .name h1 {
    font-size: calc(2vw + 15px);
  }
  .loyiha .container .flex .box2 .txt .name p {
    font-size: calc(1.2vw + 10px);
  }
}
.farmon .container .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.farmon .container .flex .left {
  width: 65%;
}
.farmon .container .flex .left img {
  width: 100%;
}
.farmon .container .flex .left .qaror li {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 0;
  list-style-position: inside;
  padding: 10px;
  font-weight: 700;
}
.farmon .container .flex .left .qaror li a {
  line-height: 1.5;
}
.farmon .container .flex .left .qaror li:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.farmon .container .flex .left .qaror li:nth-child(even) a {
  color: var(--clr);
  filter: brightness(1.2);
}
.farmon .container .flex .left .original li {
  list-style-position: inside;
  padding: 10px;
  font-weight: 700;
}
.farmon .container .flex .left .original li:hover {
  color: var(--clr);
  filter: brightness(1.2);
}
.farmon .container .flex .left .original li:hover a {
  color: var(--clr);
}
.farmon .container .flex .left .ochiq li {
  font-size: 20px;
}
.farmon .container .flex .ochiq h2 {
  font-size: 25px;
  margin-bottom: 10px;
}

.boshqarma-about .container .flex .left {
  width: 65%;
}
.boshqarma-about .container .flex .left img {
  width: 100%;
}

.maslahat .container .flex,
.tadbir .container .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
}
.maslahat .container .flex .left,
.tadbir .container .flex .left {
  width: 65%;
}
.maslahat .container .flex .left img,
.tadbir .container .flex .left img {
  width: 100%;
}
.maslahat .container .flex .left .elon,
.tadbir .container .flex .left .elon {
  margin-bottom: 50px;
}
.maslahat .container .flex .left .elon a,
.tadbir .container .flex .left .elon a {
  color: var(--clr);
}
.maslahat .container .flex .left .txt2,
.tadbir .container .flex .left .txt2 {
  padding: 10px 0;
}
.maslahat .container .flex .left .txt2 h3,
.tadbir .container .flex .left .txt2 h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.maslahat .container .flex .left .txt2 h3 a,
.tadbir .container .flex .left .txt2 h3 a {
  color: var(--clr);
}
.maslahat .container .flex .left .txt2 h3 a:hover,
.tadbir .container .flex .left .txt2 h3 a:hover {
  text-decoration: underline;
}
.maslahat .container .flex .left .txt,
.tadbir .container .flex .left .txt {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.maslahat .container .flex .left .txt > h3,
.tadbir .container .flex .left .txt > h3 {
  margin: 20px 0;
}
.maslahat .container .flex .left .txt .question,
.tadbir .container .flex .left .txt .question {
  font-weight: 600;
}
.maslahat .container .flex .left .txt > h2,
.tadbir .container .flex .left .txt > h2 {
  margin-top: 20px;
}
.maslahat .container .flex .left .txt > p,
.tadbir .container .flex .left .txt > p {
  font-size: 18px;
}
.maslahat .container .flex .left .txt .test,
.tadbir .container .flex .left .txt .test {
  font-size: 20px;
  line-height: 1.5;
}
.maslahat .container .flex .left .txt .test li,
.tadbir .container .flex .left .txt .test li {
  list-style-position: inside;
  line-height: 1.2;
  margin-left: 10px;
}
.maslahat .container .flex .left .txt .ball span,
.tadbir .container .flex .left .txt .ball span {
  font-weight: 700;
}
.maslahat .container .flex .left .txt ol,
.tadbir .container .flex .left .txt ol {
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.maslahat .container .flex .left .txt ol li,
.tadbir .container .flex .left .txt ol li {
  font-size: 18px;
}
.maslahat .container .flex .left .txt .bold li,
.tadbir .container .flex .left .txt .bold li {
  font-weight: 700;
}
.maslahat .container .flex .left .txt .bold li p,
.tadbir .container .flex .left .txt .bold li p {
  margin: 10px 0;
}

@media (max-width: 1300px) {
  .tuzilma .container .flex .left,
.maslahat .container .flex .left,
.tadbir .container .flex .left,
.natija .container .flex .left,
.farmon .container .flex .left {
    width: 100%;
  }
  .maslahat .container .flex .left h2,
.tadbir .container .flex .left h2 {
    font-size: calc(1vw + 15px);
  }
}/*# sourceMappingURL=style.css.map */