@font-face {
  font-family: "Iran1";
  src: url("/styles/webfonts/IRANSansWeb_UltraLight_FaNum.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Iran1";
  src: url("/styles/webfonts/IRANSansWeb_Light_FaNum.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Iran1";
  src: url("/styles/webfonts/IRANSansWeb_FaNum.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Iran1";
  src: url("/styles/webfonts/IRANSansWeb_Medium_FaNum.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Iran1";
  src: url("/styles/webfonts/IRANSansWeb_Bold_FaNum.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Iran1";
  src: url("/styles/webfonts/IRANSansWeb_Black_FaNum.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  margin: 0;
  padding: 0;
  direction: rtl;
  display: block;
  line-height: 1.6;
  text-align: right;
  min-height: 100vh;
  overflow-x: hidden;
  color: #232c39;
  font-family: "Iran1", "Vazirmatn", sans-serif;
  background-color: #f9f9f9;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  text-wrap: balance;
  line-height: 1.1;
}

p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  text-wrap: pretty;
  overflow-wrap: break-word;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

/*.container {
  max-width: 1440px;
  margin: 0 auto;
  padd*/ing: 0 80px;
}
@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0);
}

::-webkit-scrollbar-thumb {
  background: radial-gradient(circle, #066899 0%, rgba(0, 0, 0, 0) 100%);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}
.hamburger__line {
  width: 24px;
  height: 2px;
  background-color: #374151;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger--active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger--active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger--active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/*.top-bar {
  background: linear-gradient(to left, #13558d, #000428);
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
  position: relative;
}*/
.top-bar__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 576px) {
  .top-bar__wrapper {
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
/*.top-bar__item img {
  width: 18px;
}*/
.top-bar__item img :hover {
  filter: brightness(0) invert(1);
}
.top-bar__item.highlight {
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gray {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
}

.blue {
  color: #5075ae;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
}

/* --- Header --- */
.header {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
/*@media (max-width: 992px) {
  .header {
    padding: 8px 0;
  }
}*/
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.header__nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}
@media (max-width: 992px) {
  .header__nav ul {
    display: none;
  }
}
.header__nav ul a {
  color: #555;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.2s ease;
}
.header__nav ul a:hover {
  color: #13558d;
}
.header__logo img {
  height: 50px;
}
@media (max-width: 768px) {
  .header__logo img {
    height: 40px;
  }
}
.header__actions {
  display: flex;
  gap: 16px;
  flex-direction: row-reverse;
  align-items: center;
}
@media (max-width: 992px) {
  .header__actions {
    gap: 12px;
  }
}

/* --- Hamburger Menu --- */
.hamburger {
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 1.5px solid #ddd;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  display: none;
}
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
}
.hamburger span {
  width: 20px;
  height: 2px;
  background: #13558d;
  transition: all 0.2s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .hero {
    padding: 48px 0;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0;
  }
}
.hero__wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 992px) {
  .hero__wrapper {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }
}
.hero__image-side {
  flex: 1;
}
.hero__image-side .video-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}
.hero__image-side .video-box img {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__image-side .video-box .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.hero__image-side .video-box .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
@media (max-width: 768px) {
  .hero__image-side .video-box .play-btn {
    width: 50px;
    height: 50px;
  }
}
.hero__content-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 992px) {
  .hero__content-side {
    align-items: center;
  }
}
.hero__title {
  font-size: 42px;
  font-weight: 900;
  color: #222;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 30px;
    line-height: 44px;
  }
}
.hero__subtitle {
  font-size: 28px;
  font-weight: 700;
  color: #444;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 24px;
    line-height: 36px;
  }
}
.hero__description {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}
@media (max-width: 768px) {
  .hero__description {
    font-size: 18px;
    line-height: 28px;
  }
}
.hero__description .blue-text {
  color: #13558d;
  font-weight: bold;
}
.hero__btns {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .hero__btns {
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .hero__btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- Buttons --- */
.btn {
  padding: 12px 25px;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .btn {
    padding: 8px 16px;
    font-size: 15px;
  }
}
.btn--primary, .btn--primary-large {
  background: #13558d;
  color: #fff;
}
.btn--primary:hover, .btn--primary-large:hover {
  background: #05577f;
  transform: translateY(-2px);
  box-shadow: 0px 1px 5px -1px rgba(0, 0, 0, 0.12), 0px 1px 6px 0px rgba(0, 0, 0, 0.06);
}
.btn--outline, .btn--outline-large {
  border: 1.5px solid #13558d;
  color: #13558d;
  background: transparent;
}
.btn--outline:hover, .btn--outline-large:hover {
  background: rgba(7, 122, 178, 0.08);
  transform: translateY(-2px);
}
.btn--primary-large {
  padding: 15px 40px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .btn--primary-large {
    padding: 12px 24px;
    font-size: 18px;
  }
}
.btn--outline-large {
  padding: 15px 40px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .btn--outline-large {
    padding: 12px 24px;
    font-size: 18px;
  }
}
.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* --- Helpers --- */
@media (max-width: 992px) {
  .hide-mobile {
    display: none !important;
  }
}

.show-mobile {
  display: none;
}
@media (max-width: 992px) {
  .show-mobile {
    display: flex;
  }
}


.swiper {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.swiper-slide {
  text-align: center;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination {
  position: relative;
  margin-top: 16px;
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.6;
}
.swiper-pagination-bullet-active {
  background: #066899;
  opacity: 1;
}

.swiper-pagination-bullet {
  background: #13558d;
  opacity: 0.4;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}

.slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.bg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  gap: 8px;
  border-radius: 8px;
  padding: 4px;
}

.pot-banners {
  margin: 92px auto;
  position: relative;
}
@media (max-width: 768px) {
  .pot-banners {
    margin: 48px auto;
  }
}

.pot-banner {
  height: 380px;
  border-radius: 16px;
  background: linear-gradient(90deg, #30445f 0%, #0d1928 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1058px) {
  .pot-banner {
    flex-direction: column;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 48px 24px;
  }
}

.le-top-banner img {
  width: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.ri-top-banner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px;
}
@media (max-width: 1058px) {
  .ri-top-banner {
    justify-content: center;
    align-items: center;
    padding: 24px;
  }
}

.pot-sheild {
  display: flex;
  align-items: center;
  border: 1px solid #d3ab6d;
  width: 217px;
  gap: 8px;
  border-radius: 16px;
  border-width: 1px;
  padding: 8px 16px;
}
.pot-sheild img {
  width: 24px;
  height: 24px;
}
.pot-sheild span {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #d3ab6d;
}
@media (max-width: 768px) {
  .pot-sheild span {
    font-size: 13px;
    line-height: 20px;
  }
}

.pot-title span {
  color: #ffffff;
  font-weight: 900;
  font-size: 32px;
  line-height: 48px;
  text-align: justify;
}
@media (max-width: 768px) {
  .pot-title span {
    text-align: center;
    font-size: 24px;
    line-height: 36px;
  }
}

.pot-yellow {
  color: #d3ab6d !important;
}

.pot-subtitle span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  text-align: justify;
}
@media (max-width: 1058px) {
  .pot-subtitle span {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .pot-subtitle span {
    font-size: 16px;
    line-height: 26px;
  }
}

.pot-buttons {
  gap: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .pot-buttons {
    grid-template-columns: 1fr;
  }
}

.pot-button {
  white-space: nowrap;
  display: flex;
  align-items: center;
  background: linear-gradient(95deg, #d3ab6d -3.95%, #9f8153 94.38%);
  width: 100%;
  gap: 8px;
  border-radius: 16px;
  padding: 16px 32px;
  justify-content: center;
  transition: all 0.2s ease;
}
.pot-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 1px 5px -1px rgba(0, 0, 0, 0.12), 0px 1px 6px 0px rgba(0, 0, 0, 0.06);
}
.pot-button span {
  color: #101d2d;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}
@media (max-width: 768px) {
  .pot-button span {
    font-size: 15px;
    line-height: 24px;
  }
}

.pot-whatsapp {
  background: linear-gradient(94.68deg, #48875d 0%, #375e44 85.07%);
}
.pot-whatsapp span {
  color: #ffffff;
}

.pot-call {
  background: linear-gradient(94.27deg, #13558d 0.61%, #123b5e 99.39%);
}
.pot-call span {
  color: #ffffff;
}

.articles {
  margin: 80px auto 80px;
}
@media (max-width: 768px) {
  .articles {
    margin: 48px auto 48px;
  }
}

.articles-wrapper {
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-height: 500px;
  padding-right: 8px;
}
.articles-wrapper::-webkit-scrollbar {
  width: 6px;
}
.articles-wrapper::-webkit-scrollbar-thumb {
  background-color: #d1d5db;
  border-radius: 4px;
}

.article-title {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .article-title {
    flex-direction: column;
  }
}
.article-title img {
  width: 48px;
  height: 48px;
}
@media (max-width: 768px) {
  .article-title img {
    width: 40px;
    height: 40px;
  }
}

.article-title-te {
  font-weight: 900;
  font-size: 32px;
  color: #313131;
}
@media (max-width: 768px) {
  .article-title-te {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .article-title-te {
    font-size: 20px;
  }
}

.arts-box {
  display: flex;
  flex-direction: column;
  gap: 56px;
  justify-content: center;
  align-items: center;
}

.article-boxs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1102px) {
  .article-boxs {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 715px) {
  .article-boxs {
    grid-template-columns: 1fr;
  }
}

.article-box {
  position: relative;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  border-radius: 16px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
}
.article-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.za-img {
  width: 100%;
  height: 204px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .za-img {
    height: 180px;
  }
}
.article-box:hover .za-img {
  transform: scale(1.02);
}

.article-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px;
}
@media (max-width: 768px) {
  .article-content {
    padding: 16px;
    gap: 16px;
  }
}

.article-infos {
  display: flex;
  gap: 42px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .article-infos {
    gap: 16px;
  }
}

.article-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-info img {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .article-info img {
    width: 17px;
    height: 17px;
  }
}
.article-info span {
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  text-align: right;
  color: #6b7280;
}
@media (max-width: 768px) {
  .article-info span {
    font-size: 12px;
    line-height: 19px;
  }
}

.art-title {
  color: #101828;
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  text-align: right;
}
@media (max-width: 768px) {
  .art-title {
    font-size: 18px;
    line-height: 28px;
  }
}

.art-subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: justify;
  color: #4a5565;
}
@media (max-width: 768px) {
  .art-subtitle {
    font-size: 14px;
    line-height: 22px;
  }
}

.art-more {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: -moz-fit-content;
  width: fit-content;
}
.art-more:hover {
  gap: 12px;
}
.art-more:hover span {
  color: #05577f;
}
.art-more:hover img {
  transform: translateX(-4px);
}
.art-more span {
  color: #066899;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .art-more span {
    font-size: 15px;
  }
}
.art-more img {
  width: 17px;
  height: 17px;
  transition: all 0.2s ease;
}

.learn {
  background-color: #044566;
  width: 70px;
  height: 32px;
  border-radius: 6px;
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.learn span {
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  text-align: right;
}
@media (max-width: 768px) {
  .learn span {
    font-size: 12px;
  }
}

.hero {
  padding: 0;
  width: 100%;
}
.hero__wrapper {
  flex-direction: unset;
}
.hero__image-side .video-box {
  border-radius: 0;
}
.hero__image-side .video-box img {
  aspect-ratio: 11/10;
}

.video-box {
  position: relative;
  background: url(/images/pot-archeive.png) bottom left/cover no-repeat;
  min-height: 497px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.video-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
}

.hero__content-side {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  padding: 40px 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 560px;
}
.search-box input {
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 48px 16px 16px;
  border: none;
  outline: none;
}

.search-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1024px) {
  .video-box {
    min-height: 400px;
  }
  .hero__content-side {
    padding: 40px 32px;
  }
}
@media (max-width: 768px) {
  .video-box {
    min-height: 320px;
    background-position: center;
  }
  .hero__content-side {
    padding: 24px 16px;
    text-align: center;
    align-items: center;
  }
  .search-box {
    max-width: 100%;
  }
}
.articles-pages {
  display: grid;
  grid-template-columns: 3fr 1.5fr;
  gap: 26px;
  align-items: stretch;
}
@media (max-width: 1134px) {
  .articles-pages {
    grid-template-columns: 1fr;
  }
}

.articles-right-page {
  display: flex;
  gap: 26px;
  flex-direction: column;
  min-width: 0;
}

.articles-left-page {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.articles-page {
  margin: 69px auto;
}

.list-contents {
  display: flex;
  align-items: center;
  border-radius: 16px;
  padding: 4px;
  justify-content: space-between;
  background-color: #e8f5ff;
  overflow-x: auto;
}
.list-contents .list-content {
  min-width: 100.83px;
  border-radius: 10px;
  padding: 8px;
  color: #13558d;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
}
.list-contents .list-content:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .list-contents .list-content {
    font-size: 13px;
    line-height: 20px;
    min-width: 80px;
    padding: 8px;
  }
}
.list-contents .active {
  border-radius: 12px;
  padding: 8px;
  background-color: #13558d;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}
@media (max-width: 768px) {
  .list-contents .active {
    font-size: 13px;
    line-height: 20px;
    padding: 4px 8px;
  }
}

.two-artices {
  display: flex;
  flex-direction: column;
  gap: 56px;
  justify-content: center;
  align-items: center;
}

.article-two-boxs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 1102px) {
  .article-two-boxs {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 715px) {
  .article-two-boxs {
    grid-template-columns: 1fr;
  }
}

.articles-note {
  background: #eff6ff;
  border-radius: 16px;
  padding: 42px;
}

.note-ri-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .note-ri-contents {
    flex-direction: column;
  }
}

.art-note-icon {
  border-radius: 64px;
  padding: 16px;
  gap: 8px;
  background-color: #d4e7ff;
}

.art-note-icon2 {
  width: 72px;
  height: 72px;
  border-radius: 64px;
  background-color: #13558d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.note-contents {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notes-ti {
  color: #101828;
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  text-align: right;
}
@media (max-width: 768px) {
  .notes-ti {
    font-size: 16px;
    line-height: 24px;
  }
}

.notes-subti {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: right;
  color: #4a5565;
}
@media (max-width: 768px) {
  .notes-subti {
    font-size: 14px;
    line-height: 22px;
  }
}

.note-connection {
  display: flex;
  align-items: center;
  border-radius: 16px;
  gap: 8px;
  padding: 16px;
  background-color: #13558d;
  transition: all 0.2s ease;
}
.note-connection:hover {
  transform: translateY(-2px);
  box-shadow: 0px 1px 5px -1px rgba(0, 0, 0, 0.12), 0px 1px 6px 0px rgba(0, 0, 0, 0.06);
}
.note-connection span {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}
@media (max-width: 768px) {
  .note-connection span {
    font-size: 15px;
    line-height: 24px;
  }
}

.yekta-features {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1019607843);
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  gap: 16px;
}

.yekta-features-ti {
  display: flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid rgba(19, 85, 141, 0.1215686275);
  padding-bottom: 16px;
}
.yekta-features-ti span {
  color: #13558d;
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  text-align: right;
}
@media (max-width: 768px) {
  .yekta-features-ti span {
    font-size: 16px;
    line-height: 24px;
  }
}

.yekta-features-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yekta-features-icon img {
  width: 24px;
  height: 24px;
}

.yekta-subtitles {
  display: flex;
  gap: 24px;
  flex-direction: column;
}

.yekta-subtitle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.yekta-subtitle span {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  text-align: right;
  color: #101828;
}
@media (max-width: 768px) {
  .yekta-subtitle span {
    font-size: 13px;
    line-height: 20px;
  }
}

.call-fast {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  padding: 24px;
  gap: 24px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1019607843);
  background: linear-gradient(180deg, #13558d 0%, #051827 100%);
}

.fa-info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.call-fa-info {
  display: flex;
  gap: 8px;
  align-items: center;
}

.fa-title-info {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  text-align: right;
  color: #ffffff;
}
@media (max-width: 768px) {
  .fa-title-info {
    font-size: 16px;
    line-height: 24px;
  }
}

.fa-subtitle-info {
  color: #d1d5dc;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: right;
}
@media (max-width: 768px) {
  .fa-subtitle-info {
    font-size: 12px;
    line-height: 19px;
  }
}

.call-fa-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.call-fa-icon img {
  width: 24px;
  height: 24px;
}

.call-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.call-item {
  width: 100%;
}
.call-item span {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  display: flex;
}
@media (max-width: 768px) {
  .call-item span {
    font-size: 16px;
    line-height: 24px;
  }
}

.call-item-what {
  background: linear-gradient(94.68deg, #48875d 0%, #375e44 85.07%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  transition: all 0.2s ease;
}
.call-item-what:hover {
  transform: translateY(-2px);
  box-shadow: 0px 1px 5px -1px rgba(0, 0, 0, 0.12), 0px 1px 6px 0px rgba(0, 0, 0, 0.06);
}

.call-item-direct {
  background: linear-gradient(94.27deg, #13558d 0.61%, #144d7d 99.39%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  transition: all 0.2s ease;
}
.call-item-direct:hover {
  transform: translateY(-2px);
  box-shadow: 0px 1px 5px -1px rgba(0, 0, 0, 0.12), 0px 1px 6px 0px rgba(0, 0, 0, 0.06);
}

.call-descriptions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
.call-descriptions p {
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #d1d5dc;
}
@media (max-width: 768px) {
  .call-descriptions p {
    font-size: 14px;
    line-height: 22px;
  }
}

.call-des-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background-color: #ffffff;
}
.call-des-icon img {
  width: 16px;
  height: 16px;
}

.insta-notes {
  display: flex;
  flex-direction: column;
  background-color: rgba(133, 81, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  gap: 24px;
}
.insta-notes span {
  color: #13558d;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
@media (max-width: 768px) {
  .insta-notes span {
    font-size: 13px;
    line-height: 20px;
  }
}

.insta-note-box {
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 16px;
  background: #5856cc;
  transition: all 0.2s ease;
}
.insta-note-box:hover {
  transform: translateY(-2px);
  box-shadow: 0px 1px 5px -1px rgba(0, 0, 0, 0.12), 0px 1px 6px 0px rgba(0, 0, 0, 0.06);
}
.insta-note-box span {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .insta-note-box span {
    font-size: 15px;
    line-height: 24px;
  }
}
.insta-note-box img {
  width: 24px;
  height: 24px;
}

.suggest {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1019607843);
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  gap: 24px;
}

.suggest-title {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(19, 85, 141, 0.1215686275);
}
.suggest-title span {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  text-align: right;
  color: #13558d;
}
@media (max-width: 768px) {
  .suggest-title span {
    font-size: 16px;
    line-height: 24px;
  }
}

.suggest-ti-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.suggest-ti-icon img {
  width: 24px;
  height: 24px;
}

.suggest-contents {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
}

.sugg-ti-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sugg-ti-content span {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #101828;
}
@media (max-width: 768px) {
  .sugg-ti-content span {
    font-size: 13px;
    line-height: 18px;
  }
}

.stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.stars img {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .stars img {
    width: 17px;
    height: 17px;
  }
}

.sugg-subti span {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: justify;
  color: #364153;
}
@media (max-width: 768px) {
  .sugg-subti span {
    font-size: 13px;
    line-height: 20px;
  }
}

.work-left {
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.work-left.swiper {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1019607843);
  background: #ffffff;
  padding: 24px;
}
.work-left .swiper-wrapper {
  align-items: stretch;
}
.work-left .swiper-slide {
  display: block !important;
  height: auto;
  text-align: right;
  border-radius: 0;
  overflow: visible;
}
.work-left .work {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 42px;
  height: 100%;
  min-height: 100%;
  border-radius: 24px;
  padding: 24px;
}
@media (max-width: 1134px) {
  .work-left .work {
    min-height: auto;
  }
}
@media (max-width: 480px) {
  .work-left .work {
    padding: 16px;
    gap: 24px;
  }
}
.work-left .pic,
.work-left .pic-play {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.work-left .pic-play img {
  width: 24px !important;
  height: 24px !important;
  -o-object-fit: contain;
     object-fit: contain;
}
.work-left .info-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.work-left .info-name > span {
  font-weight: 700;
  font-size: 20px;
  color: #101828;
}
@media (max-width: 768px) {
  .work-left .info-name > span {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .work-left .info-name > span {
    font-size: 16px;
  }
}
.work-left .stars {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.work-left .stars img {
  width: 18px !important;
  height: 18px !important;
  -o-object-fit: contain;
     object-fit: contain;
}
.work-left .work-info,
.work-left .work-text {
  width: 100%;
  min-width: 0;
}
.work-left .work-text span {
  display: block;
  font-size: 18px;
  line-height: 28px;
  color: #364153;
  text-align: justify;
  word-break: break-word;
  font-weight: 400;
}
@media (max-width: 768px) {
  .work-left .work-text span {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 480px) {
  .work-left .work-text span {
    font-size: 14px;
    line-height: 20px;
  }
}

.butns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.mr-arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  position: relative;
}

.mr-arrow {
  border: 1px solid #e2e8f0;
  color: #64748b;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  background-color: #ffffff;
  box-sizing: border-box;
  position: absolute;
  bottom: 8px;
  z-index: 99;
  padding-top: 8px;
}
.mr-arrow:hover {
  background-color: #13558d;
  border-color: #13558d;
  transform: scale(1.05);
  box-shadow: 0px 1px 5px -1px rgba(0, 0, 0, 0.12), 0px 1px 6px 0px rgba(0, 0, 0, 0.06);
}
.mr-arrow:hover img {
  filter: brightness(0) invert(1);
}
.mr-arrow img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -8px;
}
@media (max-width: 768px) {
  .mr-arrow {
    width: 36px;
    height: 36px;
  }
  .mr-arrow img {
    width: 20px;
    height: 20px;
    margin-top: -4px;
  }
}

.mr-arrow-le {
  left: 8px;
}

.mr-arrow-ri {
  right: 8px;
}

.bg-swi {
  border: 1px solid #e2e8f0;
  color: #64748b;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  background-color: #ffffff;
}
.bg-swi img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 0;
}
.bg-swi:hover {
  background-color: #13558d;
  border-color: #13558d;
  transform: scale(1.05);
  box-shadow: 0px 1px 5px -1px rgba(0, 0, 0, 0.12), 0px 1px 6px 0px rgba(0, 0, 0, 0.06);
}
.bg-swi:hover img {
  filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
  .bg-swi {
    width: 36px;
    height: 36px;
  }
  .bg-swi img {
    width: 20px;
    height: 20px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  position: static !important;
  display: block;
}

@media (max-width: 1134px) {
  .work-left {
    height: auto;
  }
}
@media (max-width: 768px) {
  .articles-pages {
    gap: 24px;
  }
  .articles-right-page {
    gap: 24px;
  }
  .articles-left-page {
    gap: 16px;
  }
  .articles-note {
    padding: 24px;
  }
  .yekta-features {
    padding: 24px;
  }
  .call-fast {
    padding: 16px;
    gap: 16px;
  }
  .suggest {
    padding: 24px;
  }
  .work-left.swiper {
    padding: 16px;
  }
}
@media (max-width: 480px) {
  .articles-note {
    padding: 16px;
  }
  .note-ri-contents {
    gap: 16px;
  }
  .yekta-features {
    padding: 16px;
    gap: 12px;
  }
  .call-fast {
    padding: 12px;
    gap: 12px;
  }
  .call-item-what,
  .call-item-direct {
    padding: 12px 16px;
  }
  .suggest {
    padding: 16px;
    gap: 12px;
  }
  .insta-notes {
    padding: 16px;
    gap: 12px;
  }
  .insta-note-box {
    padding: 12px 16px;
  }
  .mr-arrow-le {
    left: 4px;
  }
  .mr-arrow-ri {
    right: 4px;
  }
}
.list-con-mobile {
  display: none;
}

.list-content-desktop,
.list-items {
  display: flex;
  align-items: center;
  border-radius: 16px;
  padding: 4px;
  justify-content: space-between;
  background-color: #e8f5ff;
  overflow-x: auto;
  gap: 4px;
  flex-wrap: nowrap;
}
.list-content-desktop .list-content,
.list-items .list-content {
  min-width: 100.83px;
  border-radius: 10px;
  padding: 8px 16px;
  color: #13558d;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.list-content-desktop .list-content:hover,
.list-items .list-content:hover {
  opacity: 0.8;
  background: rgba(19, 85, 141, 0.05);
}
@media (max-width: 768px) {
  .list-content-desktop .list-content,
  .list-items .list-content {
    font-size: 13px;
    line-height: 20px;
    min-width: 80px;
    padding: 8px 12px;
  }
}
.list-content-desktop .active,
.list-items .active {
  background-color: #13558d;
  color: #ffffff;
  font-weight: 500;
}
.list-content-desktop .active:hover,
.list-items .active:hover {
  opacity: 0.9;
  background: rgb(15.971875, 71.453125, 118.528125);
}

.list-content-mobile-wrapper,
.list-mobile-select-wrapper {
  display: none;
  align-items: center;
  background-color: #e8f5ff;
  border-radius: 16px;
  padding: 8px 16px;
  gap: 12px;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 528px) {
  .list-content-mobile-wrapper,
  .list-mobile-select-wrapper {
    display: flex;
  }
}
.list-content-mobile-wrapper .list-content-mobile-label,
.list-content-mobile-wrapper .list-mobile-label,
.list-mobile-select-wrapper .list-content-mobile-label,
.list-mobile-select-wrapper .list-mobile-label {
  color: #13558d;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .list-content-mobile-wrapper .list-content-mobile-label,
  .list-content-mobile-wrapper .list-mobile-label,
  .list-mobile-select-wrapper .list-content-mobile-label,
  .list-mobile-select-wrapper .list-mobile-label {
    font-size: 13px;
    line-height: 20px;
  }
}
.list-content-mobile-wrapper .list-content-mobile-select,
.list-content-mobile-wrapper .list-mobile-select,
.list-mobile-select-wrapper .list-content-mobile-select,
.list-mobile-select-wrapper .list-mobile-select {
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #13558d;
  border: none;
  outline: none;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  direction: rtl;
  text-align: right;
  min-width: 0;
  background-image: url(..//images/chevron-down.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20px;
}
@media (max-width: 480px) {
  .list-content-mobile-wrapper .list-content-mobile-select,
  .list-content-mobile-wrapper .list-mobile-select,
  .list-mobile-select-wrapper .list-content-mobile-select,
  .list-mobile-select-wrapper .list-mobile-select {
    font-size: 13px;
  }
}
.list-content-mobile-wrapper .list-content-mobile-select option,
.list-content-mobile-wrapper .list-mobile-select option,
.list-mobile-select-wrapper .list-content-mobile-select option,
.list-mobile-select-wrapper .list-mobile-select option {
  color: #101828;
  background: #ffffff;
  padding: 8px;
  font-size: 14px;
}

@media (max-width: 528px) {
  .list-items {
    display: none !important;
  }
}
@media (min-width: 529px) {
  .list-mobile-select-wrapper {
    display: none !important;
  }
}
@media (max-width: 548px) {
  .list-content-desktop {
    display: none;
  }
  .list-content-mobile-wrapper {
    display: flex;
  }
}/*# sourceMappingURL=Archeive-Blog.css.map */
.btns-order {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .btns-order {
        justify-content: center;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .btns-order {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
}

.btn-order-right,
.btn-order-left {
    width: 200px;
    /*height: 64px;*/
    min-width: 160px;
    border-radius: 16px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

@media (max-width: 480px) {
    .btn-order-right,
    .btn-order-left {
        width: 100%;
        max-width: 280px;
    }
}

.btn-order-right {
    border: 1px solid #066899;
    background-color: #ffffff;
}

    .btn-order-right:hover {
        background-color: #066899;
    }

        .btn-order-right:hover .bale-order-num {
            color: #ffffff;
        }

        .btn-order-right:hover img {
            filter: brightness(0) invert(1);
        }

    .btn-order-right img {
        width: 24px;
        height: 24px;
        transition: all 0.2s ease;
    }

.bale-order-num {
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    color: #066899;
    transition: all 0.2s ease;
    direction: ltr;
    display: inline-block;
}

.btn-order-left {
    background-color: #066899;
}

    .btn-order-left:hover {
        background-color: #05577f;
        transform: translateY(-2px);
        box-shadow: 0px 1px 5px -1px rgba(0, 0, 0, 0.12), 0px 1px 6px 0px rgba(0, 0, 0, 0.06);
    }

    .btn-order-left:active {
        transform: translateY(0);
    }

.btn-left-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .btn-left-text {
        white-space: normal;
    }
}
.art-subtitle{
    font-size:18px;
}
.art-title {
    font-size: 16px;
}
.article-infos{
    flex-wrap:unset;
    gap:10px
}