/* Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Variables */
:root {
  --main-color: #0e6dda;
  --light-main-color: #afd2fa;
  --button-bg: #0c8b50;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
}

html,
body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: #f3f6f9;
  color: #333;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

img {
  max-width: 100%;
  display: inline-block;
}

section {
  margin: 60px 0;
}

.section-title {
  text-align: center;
  color: var(--main-color);
  font-size: 32px;
  font-weight: 700;
  width: 50%;
  margin: 25px auto;
}

/* ========================================================= */

/* Header */

header {
  background-color: #fff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
}

header .logo {
  color: var(--main-color);
  font-size: 28px;
  font-weight: 700;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 70px;
}

.header-menu .close-header_menu {
  display: none;
}

.header-menu .header-menu_item a {
  display: block;
  padding: 20px 0;
  font-weight: 600;
  font-size: 16px;
}

.header-bar_btn {
  display: none;
}

/* Section Banner */

.section-banner .swiper-wrapper {
  padding-bottom: 40px;
}

/* Swiper Slide */
.section-banner .swiper-slide.banner {
  width: 100%;
  height: 500px;
  border-radius: 25px;

  display: flex;
  align-items: end;

  position: relative;
  overflow: hidden;
}

/* .section-banner .swiper-slide.banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 41%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(255, 255, 255, 0.1),
    rgba(0, 0, 0, 0) 100%
  );
} */

.swiper-slide.banner .body {
  z-index: 10;
  width: 65%;
  padding: 30px;
}

.swiper-slide.banner .title {
  margin: 25px 15px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 40px;
  color: #fff;
}

.swiper-slide.banner .desc {
  margin: 20px 15px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 40px;
  color: #fff;
}

.swiper-slide.banner img {
  position: absolute;
  right: 0;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  height: 6px !important;
  width: 6px !important;
  user-select: none;

  transition: width 0.3s ease;
}

.swiper-pagination-bullet-active {
  width: 25px !important;
  border-radius: 8px !important;
}

/* Swiper Navigation */
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none !important;
}

.swiper-button-next,
.swiper-button-prev {
  font-size: 32px;
  color: #fff !important;
}

/* Section Report */

.section-report_curruption .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 25px;
  padding: 40px 60px;
}

.section-report_curruption .grid {
  display: none;
}

.section-report_curruption .left {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
}

.section-report_curruption .left .title {
  color: var(--main-color);
  font-size: 32px;
  font-weight: 700;
}

.section-report_curruption .left .report-btn {
  background-color: var(--button-bg);
  color: #fff;
  border-radius: 25px;
  border: none;
  padding: 15px 50px;
  font-size: 16px;
  font-weight: 600;
}

/* Section Statistics */

.section-statistics .statistics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.section-statistics .statistic-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 25px;
  width: 100%;
}

.section-statistics .statistic-box .numbers {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;

  font-size: 40px;
  font-weight: 800;
}

.section-statistics .statistic-box .numbers img {
  padding: 15px;
  background-color: var(--light-main-color);
  border-radius: 50%;
}

.section-statistics .statistic-box p {
  font-size: 18px;
  font-weight: 600;
}

/* Section News & Section Court decisions */
.section-latest_news .news-boxes,
.section-court_decisions .decision-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(353px, 1fr));
  width: 100%;
  gap: 30px;
}

.section-latest_news .news-box,
.section-court_decisions .decision-box {
  padding: 10px;
  border-radius: 25px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.news-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 25px;
}

.section-latest_news .news-box img,
.section-court_decisions .decision-box img {
  border-radius: 25px;
}

.section-latest_news .news-box .body,
.section-court_decisions .decision-box .body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 12px;
}

.section-latest_news .news-box p,
.section-court_decisions .decision-box p,
.section-photoGallery .photoGallery_item .desc {
  font-size: 18px;
  font-weight: 600;
}

.section-latest_news .news-box .read-more_btn,
.section-court_decisions .decision-box .read-more_btn {
  background-color: var(--button-bg);
  color: #fff;
  border: none;
  padding: 15px 50px;
  font-size: 18px;
  border-radius: 15px;
  cursor: pointer;

  transition: background-color 0.3s;
}

.section-court_decisions .decision-box .read-more_btn {
  background-color: var(--main-color);
}

.section-court_decisions .decision-box .read-more_btn:hover {
  background-color: #185191;
}

.section-latest_news .news-box .read-more_btn:hover {
  background-color: #026135;
}

/* Court Desicisions & Latest news read-more link */

.section-latest_news .section-inner,
.section-court_decisions .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photoGallery_image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 25px;

}

.section-latest_news .all,
.section-court_decisions .all {
  background-color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 15px 50px;
  border-radius: 20px;
  border: none;
  margin-top: 25px;
  cursor: pointer;

  transition: background-color 0.3s ease;
}

.section-latest_news .all:hover,
.section-court_decisions .all:hover {
  background-color: #ddd;
}

/* Section QR Code */
.section-qr_code .section-inner {
  background-color: #fff;
  padding: 45px;
  border-radius: 25px;

  display: flex;
  justify-content: space-between;
}

.section-qr_code .left p {
  font-size: 32px;
  font-weight: 700;
  color: var(--main-color);
  margin: 20px 0;
}

.section-qr_code .left .download-btn {
  background-color: var(--button-bg);
  color: #fff;
  padding: 15px 50px;
  border: none;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0;
}

.section-qr_code .right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.section-qr_code .right .links {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.section-qr_code .right .links a {
  display: flex;
  align-items: center;
  background-color: #000;
  color: #fff;
  gap: 15px;
  padding: 10px 50px;
  border-radius: 20px;
}

.section-qr_code .right .links a p {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.section-qr_code .links a p span:first-child {
  font-size: 14px;
  font-weight: 870;
}

.section-qr_code .links a p span:last-child {
  font-size: 12px;
}

.section-qr_code .links a i {
  font-size: 24px;
}

/* Section PhotoGallery */

.section-photoGallery .photoGallery_items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(353px, 1fr));
  width: 100%;
  gap: 30px;
}

.section-photoGallery .photoGallery_item {
  background-color: #fff;
  padding: 10px 10px 15px 10px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-photoGallery .photoGallery_item img {
  border-radius: 25px;
}

/* Footer */

footer {
  background-color: #fff;
  padding: 40px 0;
  min-height: 190px !important;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-title {
  color: var(--main-color);
  font-size: 32px;
  font-weight: 800;
}

.footer-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  width: 60%;
}

.footer-body div:last-child {
  grid-column-start: 1;
  grid-column-end: 3;

  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-body .title {
  color: var(--main-color);
  font-size: 20px;
  font-weight: 600;
}

.footer-body p {
  font-size: 16px;
  font-weight: 600;
}

/* PhotoGallery Page & Sud-qarorlari Page */

.photoGallery-page,
.sud-qarorlari_page,
.news-page {
  margin: 60px 0;
  min-height: calc(100vh - 370px) !important;
}

.photoGallery-page .photoGallery_items,
.sud-qarorlari_page .decision-boxes,
.news-page .news-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(353px, 1fr));
  gap: 20px;
}

.photoGallery-page .photoGallery_item,
.sud-qarorlari_page .decision-box,
.news-page .news-box {
  background-color: #fff;
  padding: 10px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.photoGallery-page .photoGallery_item img,
.sud-qarorlari_page .decision-box img,
.news-page .news-box img {
  border-radius: 20px;
}

.sud-qarorlari_page .decision-box .body,
.news-page .news-box .body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  height: 100%;
}

.sud-qarorlari_page .read-more_btn,
.news-page .read-more_btn {
  background-color: var(--button-bg);
  color: #fff;
  padding: 15px 50px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.sud-qarorlari_page .read-more_btn:hover {
  background-color: #026135;
}

.news-page .read-more_btn {
  background-color: var(--main-color);
}

.news-page .read-more_btn:hover {
  background-color: #185191;
}

/* Responsive */
@media screen and (max-width: 1280px) {
  /* Container Resize */
  .container {
    max-width: 1140px !important;
  }

  .header-menu {
    gap: 30px;
  }
}

@media screen and (max-width: 992px) {
  /* Container Resize */
  .container {
    max-width: 940px !important;
  }

  header {
    padding: 20px 0;
  }

  .header-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    flex-direction: column;
    align-items: start;
    padding: 50px 35px;
    gap: 0;
    min-width: 330px;
    max-width: 530px;
    width: 100%;
    transform: translateX(100%);

    transition: transform 0.3s;
  }

  /* Open Button */
  .header-bar_btn {
    display: block;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }

  .header-bar_btn img {
    width: 25px;
    height: 25px;
  }

  .header-menu.show {
    transform: translateX(0);
  }

  /* Close Button */
  .header-menu.show .close-header_menu {
    display: block;
    background-color: transparent;
    border: none;
    color: crimson;

    position: absolute;
    top: 25px;
    right: 45px;
    font-size: 28px;
  }

  .section-qr_code .section-inner {
    flex-direction: column;
    gap: 40px;
    padding: 45px 60px;
  }

  .section-qr_code .right {
    width: 100%;
    justify-content: space-between;
  }
}

@media screen and (max-width: 768px) {
  /* Container Resize */
  .container {
    max-width: 720px !important;
  }

  .section-banner .swiper-slide.banner {
    flex-direction: column-reverse;
    justify-content: space-between;
    height: 500px;
  }

  .section-banner .swiper-slide.banner .body {
    width: 100%;
  }

  .section-banner .swiper-slide.banner img {
    right: inherit;
    top: 0;
  }

  .section-banner .swiper-slide.banner::after {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 1) 35%,
      rgba(0, 0, 0, 0.5) 60%,
      rgba(255, 255, 255, 0.1) 65%,
      rgba(0, 0, 0, 0.2) 85%
    );
  }

  .section-banner .swiper-slide.banner img {
    height: 300px;
  }

  .section-statistics .statistics {
    flex-direction: column;
  }

  .section-title {
    font-size: 28px !important;
  }

  .news-page,
  .photoGallery-page,
  .sud-qarorlari_page {
    margin: 35px 0 !important;
  }

  .footer-inner {
    flex-direction: column;
    align-items: start;
    gap: 60px;
  }

  .footer-body {
    justify-content: space-between;
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  /* Container Resize */
  .container {
    max-width: 540px !important;
    padding: 0 25px;
  }

  .section-banner {
    margin: 0;
  }

  .section-banner .container {
    margin: 0;
    padding: 0;
  }

  .swiper-slide.banner,
  .swiper-slide.banner img {
    border-radius: 0 !important;
  }

  .section-banner .swiper-slide.banner .title {
    font-size: 18px !important;
    line-height: 28px;
  }

  .section-banner .swiper-slide.banner .desc {
    font-size: 14px !important;
    line-height: 22px;
  }

  .section-report_curruption .section-inner {
    display: none;
  }

  .section-report_curruption .section-inner.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    padding: 20px !important;
    gap: 20px;
  }

  .section-report_curruption .grid img {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
    max-width: 80px;
    max-height: 80px;
    margin: 0 auto;
  }

  .section-report_curruption .grid .title {
    color: var(--main-color);
    font-size: 14px;
  }

  .section-report_curruption .grid .report-btn {
    background-color: var(--button-bg);
    color: #fff;
    padding: 7px 15px;
    font-size: 12px !important;
    border-radius: 10px;
  }

  .section-title {
    font-size: 16px !important;
    margin: 20px 0;
    width: 100%;
  }

  .section-statistics .statistic-box img {
    padding: 7px !important;
    width: 32px;
    height: 32px;
  }

  .section-statistics .statistic-box .numbers span {
    font-size: 24px;
  }

  .section-statistics .statistic-box p {
    font-size: 12px;
  }

  .section-qr_code .section-inner {
    padding: 20px;
  }

  .section-qr_code img,
  .section-qr_code .download-btn {
    display: none;
  }

  .section-qr_code .left p {
    font-size: 22px;
  }

  .section-qr_code .links {
    width: 100%;
  }

  .section-qr_code .links a {
    justify-content: center;
    padding: 7px 20px;
  }

  .section-latest_news .news-boxes,
  .section-court_decisions .decision-boxes,
  .section-photoGallery .photoGallery_items {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    overflow: auto;
  }

  .section-latest_news .news-box,
  .section-court_decisions .decision-box,
  .section-photoGallery .photoGallery_item {
    min-width: 300px !important;
  }

  .section-latest_news button,
  .section-court_decisions button,
  .section-photoGallery button {
    padding: 7px 20px !important;
    font-size: 12px !important;
    border-radius: 10px !important;
  }

  .section-latest_news .desc,
  .section-court_decisions .desc,
  .section-photoGallery .desc {
    font-size: 12px !important;
  }

  .section-latest_news .all,
  .section-court_decisions .all,
  .section-photoGallery .all {
    padding: 7px 20px;
    font-size: 12px;
    border-radius: 10px;
  }

  .footer-inner {
    align-items: center;
  }

  .footer-body {
    display: flex !important;
    flex-direction: column !important;
  }

  .footer-body div:last-child {
    flex-direction: column;
    align-items: start;
  }

  .footer-title {
    font-size: 32px !important;
  }

  footer .title {
    font-size: 20px !important;
  }

  footer p {
    font-size: 16px !important;
  }
}
