:root {
  --primary-color: #e30613;
  --secondary-color: #fff;
  --bg-color: #262e3a;
  --menu-color: #6b7280;
  --text-color: #6b7280;
  --border-color: rgba(232, 232, 232, 1);
}

@font-face {
  font-family: "Font Awesome 5 Free";
  src: url(/webfonts/fa-solid-900.woff2) format("woff2"),
    url(/webfonts/fa-solid-900.woff) format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Inter", sans-serif;
}

a:visited {
  color: currentColor;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 8px 0 !important;
}

a {
  text-decoration: none !important;
}

ul {
  margin: 0;
  padding: 0 !important;
  list-style: none;
}

li {
  list-style: none;
}

.topbar-container {
  background-color: var(--primary-color);
  padding: 8px 10px;
}

.topbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.topbar .social-icons a {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background-color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transform: rotate(0deg);
  text-decoration: none;
  color: var(--primary-color) !important;
}

.topbar .social-icons a:hover {
  background-color: #dcdcdc;
}

.topbar .social-icons a i {
  font-size: 12px;
}

.topbar-left a {
  color: var(--secondary-color) !important;
}

.topbar-left a:hover {
  text-decoration: underline;
}

.topbar-left,
.topbar-right {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--secondary-color);
  font-size: 14px;
}

.currency-rates {
  font-size: 14px;
  display: flex;
  gap: 12px;
}

.currency-rates .text-increase {
  color: #ffe600;
}

.currency-rates .text-decrease {
  color: #fff;
  font-weight: 500;
}

.currency-rates b {
  color: var(--secondary-color);
  font-weight: 500 !important;
}

.currency-rates span {
  color: #f3f3f3;
}

.header-wrapper {
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid #d7d7d7;
}

.site-branding {
  max-width: 160px;
}

.main-navigation {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.main-navigation .menu-main-uz-container,
.menu-main-menu-kr-container {
  width: 100%;
}

.menu-menu-oz-container {
  width: 100%;
}

.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: space-between;
}

.main-menu .menu-item a {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  font-feature-settings: "salt" on;
  color: var(--menu-color);
  text-decoration: none;
  padding: 8px 5px 8px 5px;
}

.main-menu .menu-item a:hover {
  color: var(--primary-color);
}

.widget_categories {
  background-color: var(--primary-color);
  padding: 12px;
  color: #fff;
  border-radius: 8px;
}

.main-menu .menu-item a::after {
  background-color: var(--primary-color);
  height: 2px;
  width: 100%;
  content: "";
  display: block;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.main-menu .menu-item a:hover:after {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  transition: all 0.25s ease-out;
}

.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 15px;
  color: #6b7280;
  position: relative;
  z-index: 110;
  padding: 0;
}

.search-container {
  position: absolute;
  top: 50%;
  transform: translateX(-150%) translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.5s ease;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 4px 24px 4px 8px;
  z-index: 120;
  display: flex;
  align-items: center;
  border: 1px solid rgba(232, 232, 232, 1);
  height: 40px;
}

.search-container.active {
  transform: translateX(0) translateY(-50%);
  opacity: 1;
  pointer-events: auto;
  display: flex;
  align-items: center;
}

.search-container input[type="search"] {
  width: 480px;
  border: none;
  font-size: 16px;
  outline: none;
  padding-right: 16px;
}

.search-icon {
  cursor: pointer;
}

.search-icon svg {
  fill: #6b7280;
}

.search-form {
  display: flex;
  align-items: center;
}

.search-form .close-icon {
  position: absolute;
  right: 0;
  top: 5px;
  cursor: pointer;
  color: #888;
}

.post-img {
  border-radius: 8px;
  min-height: 480px;
  object-fit: cover;
  height: auto;
  display: block;
}

.card-image-top {
  min-height: 228px;
  object-fit: cover;
  border-radius: 8px;
  height: auto;
  display: block;
}

.card-image-bottom {
  min-height: 240px;
  max-height: 240px;
  object-fit: cover;
  border-radius: 8px;
  height: auto;
  display: block;
}

.post-card-link {
  position: relative;
  transition: all 0.3s ease;
  display: block;
}

.post-card-link:hover .overlay-content {
  padding: 20px 16px;
}

.overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.3s ease;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    to(rgba(0, 0, 0, 0.8))
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  padding: 12px 16px;
  border-radius: 0 0 8px 8px;
  width: 100%;
}

.first-post-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 38px;
  color: #fff;
  margin: 0 0 8px 0;
}

.post-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #fff;
  margin: 0 0 8px 0px !important;
}

.post-date {
  font-size: 12px;
  color: #fff;
  text-align: end;
}

.widget-popular-week {
  background: var(--primary-color);
  padding: 12px 16px;
  border-radius: 8px;
  min-height: 744px;
}

.widget-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #fff;
  margin-bottom: 16px !important;
}

.list-post {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.list-post-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}

.list-post-item:last-child {
  border-bottom: none;
}

.list-post-meta {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f5f5f5;
}

.list-post-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #fff;
  margin: 0 0 8px 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.list-post-title:visited {
  color: #fff;
}

.list-post-title:hover {
  color: #f5f5f5;
  padding-left: 4px;
}

.title-box {
  border-bottom: 1px solid var(--primary-color);
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  align-items: center;
}

.home-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: var(--primary-color);
}

.title-link {
  font-size: 14px;
  line-height: 20px;
  color: var(--primary-color) !important;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.title-link:hover {
  margin-right: 4px;
}

.title-link:hover i {
  transform: rotate(360deg);
}

.title-link i {
  transform: rotate(320deg);
  color: var(--primary-color);
}

.center-title-box {
  border-bottom: 1px solid #fff;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  align-items: center;
}

.center-home-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: #fff;
}

.eror-page-title {
  font-size: 240px;
}

.center-title-link {
  font-size: 14px;
  line-height: 20px;
  color: #fff !important;
  transition: all 0.3s ease;
}

.center-title-link:hover {
  margin-right: 4px;
}

.center-title-link:hover i {
  transform: rotate(360deg);
}

.center-title-link i {
  transform: rotate(320deg);
  color: #fff;
}

.post.type-post {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px 24px;
}

.post.type-post .post-views {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 14px;
  line-height: 14px;
}

.post .entry-title {
  font-size: 34px;
  line-height: 40px;
  margin-bottom: 8px !important;
}

.post .post-thumbnail img {
  height: auto;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 16px;
}

.third-section {
  padding: 24px 0;
  background-color: var(--primary-color);
  margin: 8px 0 32px 0;
}

.post .entry-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--text-color);
}

.post .entry-meta .cat-links a {
  color: var(--primary-color);
}

.post .entry-meta .cat-links a:hover {
  color: #333;
  border-bottom: 1px solid #333;
  padding-top: 2px;
}

.cst-content {
  text-align: justify;
}

#secondary.widget-area {
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.wp-block-heading {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 8px !important;
  font-weight: 500;
}

.widget-area a {
  font-size: 16px;
  line-height: 22px;
  color: #000;
}

.widget-area a:hover {
  color: #111;
  border-bottom: 1px solid var(--primary-color);
}

.wp-block-latest-posts__list li {
  margin: 8px 0;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

#secondary .widget-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #000;
  margin-bottom: 16px !important;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}

#categories-2 .widget-title {
  color: #fff;
}

.cat-item a {
  background-color: #f5f5f5;
  padding: 8px 12px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  width: 100%;
  display: flex;
  border: 1px solid #fff;
}

.cat-item a:hover {
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid #fff;
}

.topbar .textwidget p {
  margin: 0 !important;
}

.wp-block-heading {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}

.wp-block-search__label {
  display: none;
}

.tags-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags-links a {
  padding: 4px 8px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-color);
  background-color: #fff;
  font-size: 12px;
  line-height: 18px;
}

.entry-footer {
  margin-top: 24px;
  padding: 16px 0 8px 0;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 24px;
  align-items: center;
}

.author-avatar img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  padding: 4px;
}

.related-posts {
  margin-top: 24px;
  padding: 24px 16px 0 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 48px;
}

.related-card-link img {
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
}

.related-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #000;
  margin: 0 0 24px 0px !important;
}

.related-card-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  margin: 16px 0 0 0 !important;
}

.related-card-title a {
  color: #000;
}

.related-card-title a:visited {
  color: #000;
}

.entry-title-search {
  color: #000;
  font-size: 32px;
  line-height: 38px;
}

.related-card-meta {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: var(--text-color);
  margin: 8px 0 24px 0;
}

.page-title {
  margin: 24px 0 !important;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--primary-color);
  font-size: 24px;
  line-height: 30px;
}

.category-card {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.category-card:hover .category-card-title,
.category-card:hover .seventh-card-title {
  color: var(--primary-color);
}

.seventh-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 0;
  width: calc(100% - 180px);
}

.category-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 0;
}

.category-card-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000;
}

.category-card-title a {
  color: #000;
}

.seventh-card-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  margin-top: 16px !important;
}

.seventh-card-title a {
  color: #000;
}

.category-card-img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
}

.seventh-card-img {
  width: 160px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
}

.error-404.not-found {
  min-height: 400px;
}

.category-card-meta {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--text-color);
  margin: 8px 0;
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.archive-card-meta {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--text-color);
  margin-bottom: 0;
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.load-more {
  margin: 24px 0 16px 0;
  padding: 8px 24px;
  border-radius: 8px;
  color: #fff;
  background-color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  border: 1px solid var(--primary-color);
}

.load-more:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: #fff;
}

.footer-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-logo {
  max-width: 200px;
}

.site-copyright {
  margin: 24px 0 0 0;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
}

.site-copyright-right {
  display: flex;
  gap: 16px;
}

.site-copyright-right a {
  color: var(--primary-color);
}

.site-footer {
  padding: 48px 0 32px 0;
  background: #f5f5f5;
}

.site-description {
  color: #000;
}

.site-description a {
  color: #000;
  font-weight: 600;
}

.page {
  margin: 0px !important;
}

.footer-box .social-icons a {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background-color: var(--primary-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transform: rotate(0deg);
  text-decoration: none;
  color: #fff;
}

.footer-box .social-icons a:hover {
  background-color: #fff;
  color: var(--primary-color);
}

.footer-box .social-icons a i {
  font-size: 14px;
}

.wp-block-search__button.wp-element-button {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  padding: 4px;
  border-radius: 4px;
  font-size: 14px;
}

.share_telegram a {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 16px;
  text-align: center;
  margin-top: 24px;
  color: #fff;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
}

.share_telegram a:hover {
  background: #fff;
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.share-btn {
  display: inline-block;
  margin-right: 10px;
  padding: 3px;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  transition: 0.3s ease;
  background: #f5f5f5;
}

.post-share a {
  border-radius: 50%;
  border: 1px solid var(--border-color);
  text-align: center;
  margin: 0 auto;
}

.post-share a i {
  color: var(--primary-color);
  font-size: 16px;
}

.share-btn:hover {
  opacity: 0.8;
}

.custom-language-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

.custom-language-list li {
  background-color: #fff;
  border-radius: 5px;
  padding: 4px 10px;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.custom-language-list li a {
  color: var(--bg-color);
}

.custom-language-list li:hover {
  background-color: var(--bg-color);
}

.custom-language-list li:hover a {
  color: #fff;
}
.custom-language-list img {
  width: 20px;
  height: auto;
}

.swiper-pagination {
  position: relative !important;
  margin-top: 8px;
}

.entry-content ul {
  list-style-type: disc !important;
  margin-left: 1.5em;
  padding-left: 1em;
}

.entry-content ol {
  list-style-type: decimal;
  margin-left: 1.5em;
  padding-left: 1em;
}

.entry-content li {
  list-style-type: disc !important;
  margin-bottom: 0.5em;
}

.entry-content blockquote {
  border-left: 4px solid #ccc;
  padding-left: 1em;
  color: #555;
  font-style: italic;
  margin: 1.5em 0;
  background-color: #f9f9f9;
}

.entry-content blockquote p {
  margin: 0;
}

.entry-content blockquote::before {
  content: open-quote;
  font-size: 2em;
  line-height: 0;
  margin-right: 0.25em;
  vertical-align: -0.4em;
  color: #ccc;
}

.entry-content blockquote::after {
  content: close-quote;
  font-size: 2em;
  line-height: 0;
  margin-left: 0.25em;
  vertical-align: -0.4em;
  color: #ccc;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color) !important;
}

.center-posts .swiper-pagination-bullet-active {
  background: #fff !important;
}

.center-posts .swiper-wrapper {
  margin-bottom: 24px;
}

.custom-search-form {
  position: relative;
}

.search-wrapper {
  position: relative;
  width: 100%;
}

.search-field {
  width: 100%;
  padding: 10px 48px 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
  height: 40px;
}

.search-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  padding: 0;
}

.search-icon:hover {
  color: #000;
}

.ajax_box {
  width: 26%;
}

.ajax_content {
  width: 74%;
}

.category-text {
  color: var(--primary-color);
  font-weight: 600;
}

.about-page-thumbnail img {
  height: 600px;
  object-fit: cover;
}

.page-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-left: 40px;
}

.page-content ul li {
  list-style-type: disc;
}

.border-box {
  padding: 24px 16px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  margin-bottom: 40px;
}

/* ONLINE SUBMIT FORM */

.form-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: white;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-container label {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-container input,
.form-container select,
.form-container textarea {
  padding: 14px 12px !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 12px !important;
  font-size: 14px;
  transition: border-color 0.3s;
  outline: none;
}

.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus {
  border-color: #002e60;
}

input[type="file"] {
  padding: 12px;
  border: 2px dashed #cbd5e1;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  gap: 12px;
  flex-wrap: wrap;
}

.form-terms {
  font-size: 0.75rem;
  color: #94a3b8;
}

.form-terms a {
  text-decoration: underline;
  color: #94a3b8;
}

input[type="file"] {
  display: block;
  border: 2px dashed #cbd5e1 !important;
  border-radius: 12px;
  width: 100%;
}

input[type="file"]::file-selector-button {
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  margin-right: 10px;
  transition: all 0.3s;
}

input[type="file"]::file-selector-button:hover {
  opacity: 0.9;
}

.form-footer .btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: none !important;
  padding: 12px 24px !important;
}

.form-footer .btn-primary:hover {
  opacity: 0.8;
}

.ftsection {
  background: #f8fafc;
  padding: 40px 0px;
}

.sidebar-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: white;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.sidebar-card:first-child {
  margin-bottom: 16px;
}

.sidebar-card ul {
  list-style: disc;
  padding-left: 20px !important;
  margin-top: 8px !important;
}

.send-title {
  font-size: 32px;
  color: #002e60;
  font-weight: 600;
}

.send-description {
  color: #64748b;
  margin-bottom: 32px;
}

.contact-box {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.icon-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.box-icon {
  background-color: #fff;
  border-radius: 50%;
  padding: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 48px;
  height: 48px;
}

.icon-box i {
  font-size: 20px;
  color: var(--primary-color, #007b3e);
}

.icon-box h6 {
  margin: 0 !important;
  font-weight: 600;
}

.icon-box p {
  margin: 0;
  color: #555;
}

.icon-box a {
  color: inherit;
  text-decoration: none;
}

.icon-box.social-icons i {
  font-size: 20px;
  margin-right: 10px;
  transition: 0.3s;
}

.icon-box.social-icons i:hover {
  color: var(--primary-color, #007b3e);
}

.footer-menu {
  display: flex;
  gap: 16px;
  text-decoration: underline;
  margin: 0 !important;
}

.swiper-wrapper .swiper-slide .card-image-bottom {
  height: 280px;
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .col-xl-4.col-md-1 {
    display: none;
  }
  .bottom-posts .mobile:nth-child(n + 3) {
    display: none;
  }

  .main-navigation {
    width: 80%;
  }

  .main-navigation .menu-main-uz-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }

  .main-navigation .menu-main-kr-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }

  .main-navigation ul.main-menu {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 6px;
    padding: 0;
    margin: 0;
  }

  .main-navigation ul.main-menu li {
    flex: 0 0 auto;
  }

  .main-navigation ul.main-menu li a {
    display: inline-block;
    padding: 10px 5px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
  }

  .main-navigation .menu-main-uz-container::-webkit-scrollbar {
    height: 1px;
  }

  .main-navigation .menu-main-kr-container::-webkit-scrollbar {
    height: 1px;
  }

  .main-navigation .menu-main-uz-container::-webkit-scrollbar-track {
    background: transparent;
  }

  .main-navigation .menu-main-kr-container::-webkit-scrollbar-track {
    background: transparent;
  }

  .main-navigation .menu-main-uz-container::-webkit-scrollbar-thumb {
    background-color: #007b3e;
    border-radius: 5px;
  }

  .main-navigation .menu-main-kr-container::-webkit-scrollbar-thumb {
    background-color: #007b3e;
    border-radius: 5px;
  }

  .main-navigation .menu-main-uz-container {
    scrollbar-color: #007b3e transparent;
    scrollbar-width: thin;
  }

  .main-navigation .menu-main-kr-container {
    scrollbar-color: #007b3e transparent;
    scrollbar-width: thin;
  }

  .header-wrapper {
    align-items: center;
    justify-content: space-between;
  }
  .topbar-email-widget {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .mobile {
    display: block;
  }

  .about-page-thumbnail img {
    height: 400px;
  }

  .topbar-email-widget {
    display: none;
  }

  .container,
  .container-md,
  .container-sm {
    max-width: 760px;
  }

  .main-navigation {
    width: 80%;
  }

  .main-navigation .menu-main-uz-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }

  .main-navigation .menu-main-kr-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }

  .main-navigation ul.main-menu {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 6px;
    padding: 0;
    margin: 0;
  }

  .main-navigation ul.main-menu li {
    flex: 0 0 auto;
  }

  .main-navigation ul.main-menu li a {
    display: inline-block;
    padding: 10px 5px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
  }

  .main-navigation .menu-main-uz-container::-webkit-scrollbar {
    height: 1px;
  }

  .main-navigation .menu-main-uz-container::-webkit-scrollbar-track {
    background: transparent;
  }

  .main-navigation .menu-main-kr-container::-webkit-scrollbar {
    height: 1px;
  }

  .main-navigation .menu-main-kr-container::-webkit-scrollbar-track {
    background: transparent;
  }
  .main-navigation .menu-main-uz-container::-webkit-scrollbar-thumb {
    background-color: #007b3e;
    border-radius: 5px;
  }
  .main-navigation .menu-main-kr-container::-webkit-scrollbar-thumb {
    background-color: #007b3e;
    border-radius: 5px;
  }

  .main-navigation .menu-main-uz-container {
    scrollbar-color: #007b3e transparent;
    scrollbar-width: thin;
  }
  .main-navigation .menu-main-kr-container {
    scrollbar-color: #007b3e transparent;
    scrollbar-width: thin;
  }

  .header-wrapper {
    align-items: center;
    justify-content: space-between;
  }

  .widget-title {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 8px !important;
  }

  .col-xl-4.col-md-1 {
    display: none;
  }

  .list-post-item {
    margin: 4px 0;
  }

  .widget-popular-week {
    padding: 8px 8px;
  }

  .topbar-left,
  .topbar-right {
    gap: 10px;
  }

  .currency-rates {
    gap: 8px;
  }

  .overlay-content {
    padding: 4px 8px;
  }

  .category-card-title {
    font-size: 14px;
    line-height: 20px;
  }

  .category-card-meta {
    font-size: 12px;
    line-height: 18px;
  }

  .seventh-card-title {
    font-size: 14px;
    line-height: 20px;
    margin-top: 0 !important;
  }

  .bottom-posts .mobile:nth-child(n + 3) {
    display: none;
  }

  .category-card-img {
    width: 88px;
    height: 88px;
  }
  .related-posts {
    margin: 16px 0;
  }
  .post .entry-title {
    font-size: 24px;
    line-height: 32px;
  }
  .post .post-thumbnail img {
    height: auto;
  }
  .widget-area a {
    font-size: 14px;
    line-height: 18px;
  }
  #secondary.widget-area {
    padding: 12px;
  }
  .post.type-post {
    padding: 12px;
  }
}

@media (max-width: 767px) {
  .topbar-container {
    padding: 10px 0;
  }
  .widget-popular-week {
    min-height: 380px;
  }

  .currency-rates,
  .topbar-email-widget {
    display: none;
  }

  .header-wrapper {
    padding: 8px 0;
  }

  .site-branding {
    max-width: 24 0;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-color);
    padding: 0 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-left: 16px;
    z-index: 9999999999999;
  }

  .menu-toggle.active {
    position: absolute;
    top: -54px;
  }

  .page-title {
    margin: 12px 0 !important;
    font-size: 14px;
    line-height: 22px;
    padding-bottom: 4px;
  }

  .menu-icon {
    display: none;
  }

  .main-navigation {
    justify-content: end;
    flex-direction: row-reverse;
    width: 92px;
  }

  .main-navigation.toggled .menu-menu-container {
    display: block;
  }

  .menu-menu-oz-container {
    display: block;
  }

  .search-container {
    top: 50%;
    z-index: 9999999999;
  }

  .menu-menu-container {
    display: none;
  }

  .menu-menu-oz-container {
    display: none;
  }

  .menu-toggle .open-icon {
    display: flex;
    height: 33px;
  }

  .menu-toggle.active .open-icon {
    display: none;
  }

  .menu-toggle.active .close-icon {
    display: flex;
    font-size: 20px;
    padding: 0;
    height: 33px;
  }

  .main-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
  }

  .main-menu.active {
    display: block;
    padding: 64px 16px !important;
  }

  .main-menu.active .menu-item a {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 16px;
    margin: 12px 0;
    transition: all 0.3s ease;
  }

  .main-menu.active .menu-item a:hover {
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    background-color: var(--primary-color);
    color: #fff;
  }

  .search-form .input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .search-form .search-icon,
  .search-form .close-icon {
    flex-shrink: 0;
  }

  .search-form .search-field {
    flex: 1;
    min-width: 0;
  }

  .search-container input[type="search"] {
    width: 260px;
    background-color: #fff;
  }

  .post-img {
    min-height: 320px;
    margin-bottom: 24px;
  }

  .seventh-card-body {
    width: calc(100% - 140px);
  }

  .first-post-title {
    font-size: 20px;
    line-height: 26px;
  }

  .widget-title {
    font-size: 18px;
    line-height: 24px;
  }

  .mobile {
    display: none;
  }

  .title-box {
    padding-bottom: 8px;
  }

  .related-posts {
    margin: 16px 0;
    padding: 24px 16px 8px 16px;
  }

  .home-title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0 !important;
  }

  .category-card-title {
    font-size: 14px;
    line-height: 20px;
  }

  .seventh-card-img {
    width: 120px;
    height: 100px;
  }

  .seventh-card-title {
    margin: 0 !important;
    font-size: 14px;
    line-height: 20px;
  }

  .category-card-body,
  .seventh-card-body {
    justify-content: space-around;
  }

  .category-card-meta {
    margin: 0 !important;
    font-size: 12px;
  }

  .site-description {
    font-size: 14px;
    line-height: 20px;
    text-align: justify;
  }

  .site-copyright {
    flex-direction: column;
    gap: 16px;
    font-size: 12px;
  }

  .site-copyright-right {
    justify-content: end;
    width: 100%;
  }

  .footer-logo {
    max-width: 160px;
  }

  .load-more {
    margin: 16px 0;
  }

  .archive .related-posts .col-md-3 {
    margin-bottom: 16px;
  }

  .site-main {
    margin-bottom: 40px;
  }

  .post.type-post {
    padding: 16px;
  }

  .post .entry-title {
    font-size: 20px;
    line-height: 26px;
  }

  .post .entry-meta {
    font-size: 10px;
    line-height: 18px;
  }

  .post .post-thumbnail img {
    height: auto;
  }

  .related-title {
    font-size: 18px;
    line-height: 24px;
  }

  .wp-block-search__input {
    height: 44px;
  }

  .wp-block-search__button.wp-element-button {
    padding: 4px 14px;
    font-size: 16px;
  }

  .card-image-bottom {
    height: 300px;
    object-fit: cover;
  }

  .custom-search-form {
    display: none;
  }

  .no-results .page-content {
    margin: 0 !important;
  }

  .entry-title-search {
    color: #000;
    font-size: 18px;
    line-height: 24px;
  }

  .ajax_box {
    width: 30%;
  }

  .ajax_content {
    width: 72%;
  }

  .eror-page-title {
    font-size: 120px;
  }

  .eror-title {
    font-size: 16px;
  }

  .single-post .entry-footer {
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
  }
}
