body {
  font-feature-settings: "ss01";
  background-color: var(--color-surface-900);
  color: var(--color-ink-100);
}

* {
  scroll-behavior: smooth;
}

select {
  border-left: 1rem solid transparent;
}

* {
  --sb-track-color: #e1e6f1;
  --sb-thumb-color: #b1bcd6;
  --sb-size: 8px;
}

*::-webkit-scrollbar {
  width: var(--sb-size);
}

*::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 5px;
}

*::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 5px;
}

@supports not selector(::-webkit-scrollbar) {
  * {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
#content {
  margin-top: 80px;
}

#main-header .menu-item {
  padding: 0 1rem;
  position: relative;
}
#main-header .menu-item::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -1rem;
  height: 1rem;
  transition: width 0.3s ease-in-out;
}
#main-header .menu-item.menu-item-has-children > .sub-menu {
  min-width: 225px;
  display: none;
  position: absolute;
  top: 2.5rem;
  border-radius: 0.375rem;
  border: 1px solid #232358;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
  background-color: #0d0d2b;
}
#main-header .menu-item.menu-item-has-children:hover > .sub-menu {
  display: block;
}
#main-header .menu-item .sub-menu li {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1.5rem;
  color: #f5f6fa;
}
#main-header .menu-item .sub-menu li:first-child {
  padding-top: 1.5rem;
}
#main-header .menu-item:hover {
  color: #76BFD3;
}
#main-header .menu-item:hover svg {
  stroke: #76BFD3;
}
#main-header .menu-item .active a {
  stroke: #76BFD3;
}
#main-header .menu-item .active svg {
  stroke: #76BFD3;
}

.nav-menu li.active > a {
  color: #76BFD3;
}

.nav-menu li.active > a:hover {
  color: #76BFD3;
}

#menu-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 100px;
}
@media (max-width: 984px) {
  #menu-footer {
    height: 300px;
  }
}
#menu-footer .menu-item {
  font-size: 14px;
}

.footer-mask {
  border: 2px solid;
  border-image-slice: 1;
  border-image-source: radial-gradient(47.55% 77.69% at 50% 110.19%, rgba(0, 49, 156, 0.24) 0%, rgba(0, 49, 156, 0) 100%);
}
@media (max-width: 1024px) {
  .footer-mask {
    border-image-source: radial-gradient(97.55% 77.69% at 50% 110.19%, rgba(0, 49, 156, 0.24) 0%, rgba(0, 49, 156, 0) 100%);
  }
}

.post-content p a,
.post-content h2 a,
.post-content h3 a,
.post-content h4 a,
.post-content h5 a,
.post-content h6 > a,
.product-post-content p a,
.product-post-content h2 a,
.product-post-content h3 a,
.product-post-content h4 a,
.product-post-content h5 a,
.product-post-content h6 > a {
  color: #8b5cf6;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
}
.post-content p a::before,
.post-content h2 a::before,
.post-content h3 a::before,
.post-content h4 a::before,
.post-content h5 a::before,
.post-content h6 > a::before,
.product-post-content p a::before,
.product-post-content h2 a::before,
.product-post-content h3 a::before,
.product-post-content h4 a::before,
.product-post-content h5 a::before,
.product-post-content h6 > a::before {
  content: "";
  position: absolute;
  bottom: 4px;
  right: 0;
  width: 100%;
  height: 1px;
}
.post-content p a:hover,
.post-content h2 a:hover,
.post-content h3 a:hover,
.post-content h4 a:hover,
.post-content h5 a:hover,
.post-content h6 > a:hover,
.product-post-content p a:hover,
.product-post-content h2 a:hover,
.product-post-content h3 a:hover,
.product-post-content h4 a:hover,
.product-post-content h5 a:hover,
.product-post-content h6 > a:hover {
  color: rgb(var(--color-secondary));
}
.post-content p a:hover::after,
.post-content h2 a:hover::after,
.post-content h3 a:hover::after,
.post-content h4 a:hover::after,
.post-content h5 a:hover::after,
.post-content h6 > a:hover::after,
.product-post-content p a:hover::after,
.product-post-content h2 a:hover::after,
.product-post-content h3 a:hover::after,
.product-post-content h4 a:hover::after,
.product-post-content h5 a:hover::after,
.product-post-content h6 > a:hover::after {
  width: 100%;
}
.post-content .social-container.show-social,
.product-post-content .social-container.show-social {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  right: calc(100% + 10px);
  min-width: 200px;
  z-index: 1;
}
.post-content .blog-img-container,
.product-post-content .blog-img-container {
  border-radius: 10px;
}
.post-content .blog-img-container img,
.product-post-content .blog-img-container img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: auto;
  display: block;
  border-radius: 10px;
}
.post-content img,
.product-post-content img {
  margin: 20px auto 20px auto;
}
.post-content,
.product-post-content {
  border-radius: 10px;
  margin: 10px 0 20px 0;
}
.post-content p:empty,
.product-post-content p:empty {
  display: none;
}
.post-content h1,
.product-post-content h1 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2.125rem);
  /* Mobile: 24px, Tablet: 34px, Desktop: 34px */
  font-weight: 700;
  /* Bold */
  margin-bottom: 10px;
}
.post-content h2,
.product-post-content h2 {
  font-size: clamp(1.125rem, 1.5vw, 1.875rem);
  /* Mobile: 18px, Tablet: 24px, Desktop: 30px */
  font-weight: 700;
  /* Bold */
}
.post-content h2:not(:first-of-type),
.product-post-content h2:not(:first-of-type) {
  margin-bottom: 10px;
  margin-top: 40px;
}
.post-content h2:first-of-type,
.product-post-content h2:first-of-type {
  margin-bottom: 10px;
}
.post-content h3,
.product-post-content h3 {
  font-size: clamp(1.125rem, 1.2vw, 1.5rem);
  /* Mobile: 18px, Tablet: 20px, Desktop: 24px */
  font-weight: 700;
  /* Bold */
  margin-bottom: 10px;
}
.post-content h4,
.product-post-content h4 {
  font-size: clamp(1rem, 1.1vw, 1.25rem);
  /* Mobile: 16px, Tablet: 18px, Desktop: 20px */
  font-weight: 700;
  /* Bold */
  margin-bottom: 10px;
}
.post-content h5,
.product-post-content h5 {
  font-size: clamp(1rem, 1vw, 1.125rem);
  /* Mobile: 16px, Tablet: 16px, Desktop: 18px */
  font-weight: 700;
  /* Bold */
  margin-bottom: 10px;
}
.post-content h6,
.product-post-content h6 {
  font-size: clamp(1rem, 0.9vw, 1rem);
  /* Mobile: 16px, Tablet: 16px, Desktop: 16px */
  font-weight: 700;
  /* Bold */
  margin-bottom: 10px;
}
.post-content p,
.product-post-content p {
  font-size: clamp(14px, 1vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 37px;
  text-align: justify;
  margin-bottom: 25px;
}
.post-content img,
.product-post-content img {
  margin: 20px auto;
}
.post-content li,
.product-post-content li {
  position: relative;
  margin: 5px 0;
  color: rgb(var(--color-darkest));
  font-size: clamp(14px, 1vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 37px;
  text-align: justify;
}
.post-content ol,
.product-post-content ol {
  position: relative;
  list-style-type: -moz-ethiopic-numeric;
  padding-right: 1.25rem;
}
.post-content ul,
.product-post-content ul {
  position: relative;
  list-style-type: unset;
  padding-right: 2.5rem;
  margin: 1rem 0;
}
.post-content .wp-block-column,
.product-post-content .wp-block-column {
  padding: 10px;
}
.post-content .blog-img-container,
.product-post-content .blog-img-container {
  border-radius: 10px;
}
.post-content .squares-left,
.post-content .squares-right,
.post-content .squares-bottom,
.product-post-content .squares-left,
.product-post-content .squares-right,
.product-post-content .squares-bottom {
  width: 100vw;
}

.swiper-prev,
.swiper-next {
  cursor: pointer;
}

.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.swiper-button-lock {
  display: none;
}

.swiper-custom-pagination .swiper-pagination-bullet {
  transition: all 0.5s;
}

.swiper-custom-pagination .swiper-pagination-bullet-active {
  border-radius: 5rem;
  width: 2rem;
  background: #000;
}

.search-results-box .search-item > a,
.mobile-search-results-box .search-item > a {
  background-color: #f3f8fd;
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  gap: 1rem;
  font-size: 14px;
}
.search-results-box .search-item > a img,
.mobile-search-results-box .search-item > a img {
  width: 50px;
  height: 50px;
}

.qty[type=number]::-webkit-inner-spin-button,
.qty[type=number]::-webkit-outer-spin-button,
.single-qty[type=number]::-webkit-inner-spin-button,
.single-qty[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.dot-loader {
  width: 6px;
  height: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 1s infinite linear alternate;
}

@keyframes l5 {
  0% {
    box-shadow: 9px 0 #a7c6ff, -9px 0 #3276f8;
    background: #a7c6ff;
  }
  33% {
    box-shadow: 9px 0 #a7c6ff, -9px 0 #3276f8;
    background: #3276f8;
  }
  66% {
    box-shadow: 9px 0 #3276f8, -9px 0 #a7c6ff;
    background: #3276f8;
  }
  100% {
    box-shadow: 9px 0 #3276f8, -9px 0 #a7c6ff;
    background: #a7c6ff;
  }
}
.spinner {
  width: 48px;
  height: 48px;
  border: 5px solid #00319c;
  border-bottom-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.pulse-loader {
  width: 40px;
  aspect-ratio: 4;
  --_g: no-repeat radial-gradient(circle closest-side, #ffffff 90%, #0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: 33.3333333333% 100%;
  animation: l7 1s infinite linear;
}
.pulse-loader.blue {
  --_g: no-repeat radial-gradient(circle closest-side, #319aae 90%, #0000);
}

@keyframes l7 {
  33% {
    background-size: 33.3333333333% 0%, 33.3333333333% 100%, 33.3333333333% 100%;
  }
  50% {
    background-size: 33.3333333333% 100%, 33.3333333333% 0%, 33.3333333333% 100%;
  }
  66% {
    background-size: 33.3333333333% 100%, 33.3333333333% 100%, 33.3333333333% 0%;
  }
}
.woocommerce-NoticeGroup {
  display: none;
}

.woocommerce-pagination ul {
  display: flex;
  gap: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 2rem;
}
.woocommerce-pagination ul li span.current {
  background-color: #00319c;
  color: #fff;
}
.woocommerce-pagination ul li a:hover {
  background-color: #00319c;
  color: #fff;
}
.woocommerce-pagination ul li span,
.woocommerce-pagination ul li a {
  width: 3rem;
  height: 3rem;
  border: 1px solid #e4e9f4;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #575757;
  transition: all 0.1s;
}

.woocommerce-breadcrumb {
  font-size: 14px;
  color: #575757;
}
@media (max-width: 1024px) {
  .woocommerce-breadcrumb {
    font-size: 10px;
  }
}

.toast-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

.toast {
  min-width: 250px;
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 4px;
  color: white;
  font-size: 14px;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-success {
  background-color: #28a745;
}

.toast-error {
  background-color: #dc3545;
}

.toast-warning {
  background-color: #ffc107;
  color: #333;
}

.toast-close {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0 5px;
  font-size: 18px;
  opacity: 0.7;
}

.toast-close:hover {
  opacity: 1;
}

div.fp-watermark {
  display: none;
}

.page-numbers {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
  color: #f5f6fa;
  background: #171742;
}
.page-numbers:hover {
  background-color: rgba(139, 92, 246, 0.2);
}
.page-numbers.current {
  background-image: linear-gradient(to left, #8b5cf6, #4f6df5);
  color: #ffffff;
}
@media (max-width: 1248px) {
  .page-numbers {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
  }
}
@media (max-width: 1024px) {
  .masked-img {
    -webkit-mask-image: linear-gradient(to left, transparent 10%, black 40%);
            mask-image: linear-gradient(to left, transparent 10%, black 40%);
  }
}

/* *************** AzarMehr *************** */
@font-face {
  font-family: "AzarMehr";
  src: url("../fonts/AzarMehr/AzarMehr[DSTY,KSHD,wght].woff2");
}
/* *************** Pinar *************** */
@font-face {
  font-family: Pinar;
  src: url("../fonts/Pinar/Pinar-VF-FD[DSTY,KSHD,wght].woff2");
  font-display: swap;
}
/* Assigning Fonts */
:root {
  font-family: "AzarMehr", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}

/* *************** yekan *************** */
@font-face {
  font-family: "yekan";
  src: url("../fonts/yekanbakh/YekanBakh-Black.woff2");
  font-weight: 900;
}
@font-face {
  font-family: "yekan";
  src: url("../fonts/yekanbakh/YekanBakh-ExtraBold.woff2");
  font-weight: 800;
}
@font-face {
  font-family: "yekan";
  src: url("../fonts/yekanbakh/YekanBakh-Bold.woff2");
  font-weight: 700;
}
@font-face {
  font-family: "yekan";
  src: url("../fonts/yekanbakh/YekanBakh-SemiBold.woff2");
  font-weight: 600;
}
@font-face {
  font-family: "yekan";
  src: url("../fonts/yekanbakh/YekanBakh-Regular.woff2");
  font-weight: 500;
}
@font-face {
  font-family: "yekan";
  src: url("../fonts/yekanbakh/YekanBakh-Regular.woff2");
  font-weight: 400;
}
@font-face {
  font-family: "yekan";
  src: url("../fonts/yekanbakh/YekanBakh-Light.woff2");
  font-weight: 300;
}
.hero {
  background-image: url("../images/home/world.webp");
  background-repeat: no-repeat;
  background-position: top;
}

.catbox {
  box-shadow: 0px 0px 12.8px 0px rgba(0, 0, 0, 0.6588235294);
}

.map {
  background-image: url("../images/home/map.webp");
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
}

.country {
  background-image: url("../images/home/sky.webp");
  background-repeat: no-repeat;
  height: 335px;
  background-position: center;
  background-size: cover;
}

@media (max-width: 984px) {
  .about {
    height: 200px !important;
  }
}
.about {
  background-image: url("../images/landing/aboutus.webp");
  background-repeat: no-repeat;
  height: 520px;
  background-position: center;
  background-size: cover;
}

.hero-twinkle {
  display: block;
  box-shadow: 0 0 8px 2px currentColor;
  animation: hero-twinkle 2.6s ease-in-out infinite;
}

@keyframes hero-twinkle {
  0%, 100% {
    opacity: 0.25;
    transform: scale(0.7);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-twinkle {
    animation: none;
  }
}/*# sourceMappingURL=main.css.map */