.slider-target,
.slider-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.slider-target {
  position: relative;
}

.slider-base,
.slider-connects {
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
}

.slider-connects {
  overflow: hidden;
  z-index: 0;
}

.slider-connect,
.slider-origin {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-style: flat;
  width: 100%;
  will-change: transform;
  z-index: 1;
}

.slider-txt-dir-rtl.slider-horizontal .slider-origin {
  left: 0;
  right: auto;
}

.slider-vertical .slider-origin {
  top: -100%;
  width: 0;
}

.slider-horizontal .slider-origin {
  height: 0;
}

.slider-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.slider-touch-area {
  height: 100%;
  width: 100%;
}

.slider-state-tap .slider-connect,
.slider-state-tap .slider-origin {
  transition: transform 0.3s;
}

.slider-state-drag * {
  cursor: inherit !important;
}

.slider-tooltip-drag .slider-tooltip,
.slider-tooltip-focus .slider-tooltip {
  display: none !important;
}

.slider-tooltip-drag .slider-active .slider-tooltip,
.slider-tooltip-drag.slider-state-drag
  .slider-tooltip:not(.slider-tooltip-hidden),
.slider-tooltip-focus.slider-focused
  .slider-tooltip:not(.slider-tooltip-hidden) {
  display: block !important;
}

.slider-horizontal {
  height: var(--slider-height, 6px);
}

.slider-horizontal .slider-handle {
  height: var(--slider-handle-height, 16px);
  right: calc(var(--slider-handle-width, 16px) / 2 * -1);
  top: calc(
    (var(--slider-handle-height, 16px) - var(--slider-height, 6px)) / 2 * -1 +
      -1px
  );
  width: var(--slider-handle-width, 16px);
}

.slider-vertical {
  height: var(--slider-vertical-height, 300px);
  width: var(--slider-height, 6px);
}

.slider-vertical .slider-handle {
  bottom: calc(var(--slider-handle-width, 16px) / 2 * -1);
  height: var(--slider-handle-width, 16px);
  right: calc(
    (var(--slider-handle-height, 16px) - var(--slider-height, 6px)) / 2 * -1 +
      -1px
  );
  width: var(--slider-handle-height, 16px);
}

.slider-txt-dir-rtl.slider-horizontal .slider-handle {
  left: calc(var(--slider-handle-width, 16px) / 2 * -1);
  right: auto;
}

.slider-base {
  background-color: var(--slider-bg, #d1d5db);
}

.slider-base,
.slider-connects {
  border-radius: var(--slider-radius, 9999px);
}

.slider-connect {
  background: var(--slider-connect-bg, #10b981);
  cursor: pointer;
}

.slider-draggable {
  cursor: ew-resize;
}

.slider-vertical .slider-draggable {
  cursor: ns-resize;
}

.slider-handle {
  background: var(--slider-handle-bg, #fff);
  border: var(--slider-handle-border, 0);
  border-radius: var(--slider-handle-radius, 9999px);
  box-shadow: var(
    --slider-handle-shadow,
    0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.32)
  );
  cursor: -webkit-grab;
  cursor: grab;
  height: var(--slider-handle-height, 16px);
  width: var(--slider-handle-width, 16px);
}

.slider-handle:focus {
  box-shadow: 0 0 0 var(--slider-handle-ring-width, 3px)
      var(--slider-handle-ring-color, rgba(16, 185, 129, 0.188)),
    var(--slider-handle-shadow, 0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.32));
  outline: none;
}

.slider-active {
  box-shadow: var(
    --slider-handle-shadow-active,
    0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.42)
  );
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

[disabled] .slider-connect {
  background: var(--slider-connect-bg-disabled, #9ca3af);
}

[disabled] .slider-handle,
[disabled].slider-handle,
[disabled].slider-target {
  cursor: not-allowed;
}

[disabled] .slider-tooltip {
  background: var(--slider-tooltip-bg-disabled, #9ca3af);
  border-color: var(--slider-tooltip-bg-disabled, #9ca3af);
}

.slider-tooltip {
  background: var(--slider-tooltip-bg, #10b981);
  border: 1px solid var(--slider-tooltip-bg, #10b981);
  border-radius: var(--slider-tooltip-radius, 5px);
  color: var(--slider-tooltip-color, #fff);
  display: block;
  font-size: var(--slider-tooltip-font-size, 0.875rem);
  font-weight: var(--slider-tooltip-font-weight, 600);
  line-height: var(--slider-tooltip-line-height, 1.25rem);
  min-width: var(--slider-tooltip-min-width, 20px);
  padding: var(--slider-tooltip-py, 2px) var(--slider-tooltip-px, 6px);
  position: absolute;
  text-align: center;
  white-space: nowrap;
}

.slider-horizontal .slider-tooltip-top {
  bottom: calc(
    var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) +
      var(--slider-tooltip-distance, 3px)
  );
  left: 50%;
  transform: translate(-50%);
}

.slider-horizontal .slider-tooltip-top:before {
  border: var(--slider-tooltip-arrow-size, 5px) solid transparent;
  border-top-color: inherit;
  bottom: calc(var(--slider-tooltip-arrow-size, 5px) * -2);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translate(-50%);
  width: 0;
}

.slider-horizontal .slider-tooltip-bottom {
  left: 50%;
  top: calc(
    var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) +
      var(--slider-tooltip-distance, 3px)
  );
  transform: translate(-50%);
}

.slider-horizontal .slider-tooltip-bottom:before {
  border: var(--slider-tooltip-arrow-size, 5px) solid transparent;
  border-bottom-color: inherit;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: calc(var(--slider-tooltip-arrow-size, 5px) * -2);
  transform: translate(-50%);
  width: 0;
}

.slider-vertical .slider-tooltip-left {
  right: calc(
    var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) +
      var(--slider-tooltip-distance, 3px)
  );
  top: 50%;
  transform: translateY(-50%);
}

.slider-vertical .slider-tooltip-left:before {
  border: var(--slider-tooltip-arrow-size, 5px) solid transparent;
  border-left-color: inherit;
  content: "";
  height: 0;
  position: absolute;
  right: calc(var(--slider-tooltip-arrow-size, 5px) * -2);
  top: 50%;
  transform: translateY(-50%);
  width: 0;
}

.slider-vertical .slider-tooltip-right {
  left: calc(
    var(--slider-handle-height, 16px) + var(--slider-tooltip-arrow-size, 5px) +
      var(--slider-tooltip-distance, 3px)
  );
  top: 50%;
  transform: translateY(-50%);
}

.slider-vertical .slider-tooltip-right:before {
  border: var(--slider-tooltip-arrow-size, 5px) solid transparent;
  border-right-color: inherit;
  content: "";
  height: 0;
  left: calc(var(--slider-tooltip-arrow-size, 5px) * -2);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
}

.slider-horizontal .slider-origin > .slider-tooltip {
  left: auto;
  transform: translate(50%);
}

.slider-horizontal .slider-origin > .slider-tooltip-top {
  bottom: calc(
    var(--slider-tooltip-arrow-size, 5px) +
      (var(--slider-handle-height, 16px) - var(--slider-height, 6px)) / 2 +
      var(--slider-tooltip-distance, 3px) + 1px
  );
}

.slider-horizontal .slider-origin > .slider-tooltip-bottom {
  top: calc(
    var(--slider-tooltip-arrow-size, 5px) +
      (var(--slider-handle-height, 16px) - var(--slider-height, 6px)) / 2 +
      var(--slider-tooltip-distance, 3px) + var(--slider-height, 6px) - 1px
  );
}

.slider-vertical .slider-origin > .slider-tooltip {
  top: auto;
  transform: translateY(
    calc(
      (
          var(--slider-tooltip-line-height, 1.25rem) -
            var(--slider-tooltip-py, 2px)
        ) * -1 + 1px
    )
  );
}

.slider-vertical .slider-origin > .slider-tooltip-left {
  right: calc(
    var(--slider-tooltip-arrow-size, 5px) + var(--slider-height, 6px) +
      (var(--slider-handle-height, 16px) - var(--slider-height, 6px)) / 2 +
      var(--slider-tooltip-distance, 3px) - 1px
  );
}

.slider-vertical .slider-origin > .slider-tooltip-right {
  left: calc(
    var(--slider-tooltip-arrow-size, 5px) + var(--slider-height, 6px) +
      (var(--slider-handle-height, 16px) - var(--slider-height, 6px)) / 2 +
      var(--slider-tooltip-distance, 3px) - var(--slider-height, 6px) + 1px
  );
}

/* VUEFORM SLIDER */
@font-face {
  font-family: "Pelak";
  font-style: normal;
  font-weight: 100;
  src: url(fonts/PelakFA-Thin.woff2) format("woff2"),
    url(fonts/PelakFA-Thin.woff) format("woff");
  /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
  font-display: swap;
}

@font-face {
  font-family: "Pelak";
  font-style: normal;
  font-weight: 500;
  src: url(fonts/PelakFA-SemiBold.woff2) format("woff2"),
    url(fonts/PelakFA-SemiBold.woff) format("woff");
  /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
  font-display: swap;
}

@font-face {
  font-family: "Pelak";
  font-style: normal;
  font-weight: 300;
  src: url(fonts/PelakFA-Regular.woff2) format("woff2"),
    url(fonts/PelakFA-Regular.woff) format("woff");
  /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
  font-display: swap;
}

@font-face {
  font-family: "Pelak";
  font-style: normal;
  font-weight: 400;
  src: url(fonts/PelakFA-Medium.woff2) format("woff2"),
    url(fonts/PelakFA-Medium.woff) format("woff");
  /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
  font-display: swap;
}

@font-face {
  font-family: "Pelak";
  font-style: normal;
  font-weight: 200;
  src: url(fonts/PelakFA-light.woff2) format("woff2"),
    url(fonts/PelakFA-light.woff) format("woff");
  /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
  font-display: swap;
}

@font-face {
  font-family: "Pelak";
  font-style: normal;
  font-weight: 700;
  src: url(fonts/PelakFA-ExtraBold.woff2) format("woff2"),
    url(fonts/PelakFA-ExtraBold.woff) format("woff");
  /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
  font-display: swap;
}

@font-face {
  font-family: "Pelak";
  font-style: normal;
  font-weight: 600;
  src: url(fonts/PelakFA-Bold.woff2) format("woff2"),
    url(fonts/PelakFA-Bold.woff) format("woff");
  /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
  font-display: swap;
}

@font-face {
  font-family: "Pelak";
  font-style: normal;
  font-weight: 800;
  src: url(fonts/PelakFA-Black.woff2) format("woff2"),
    url(fonts/PelakFA-Black.woff) format("woff");
  /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
  font-display: swap;
}

html * {
  font-family: "Pelak";
}

html::-webkit-scrollbar {
  width: 5px;
}

html::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px white;
  border-radius: 24px;
  height: 80%;
}

html::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 10px;
  height: 80%;
}

html::-webkit-scrollbar-thumb:hover {
  background-color: #0c63e4;
}

.pointer {
  cursor: pointer;
}

.Landing_shops {
  direction: rtl;
}

.Landing_shops .banner {
  background-image: url(images/landings/shops/banner_background.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.Landing_shops .banner .coin {
  max-width: 100%;
  max-height: 100%;
}

.Landing_shops .banner .t1 {
  font-style: normal;
  font-weight: 600;
  font-size: 47px;
  line-height: 68px;
  text-align: right;
  color: #3d3d3d;
}

.Landing_shops .banner .t2 {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 44px;
  text-align: right;
  color: #ff8800;
}

.Landing_shops .banner .t3 {
  font-style: normal;
  font-weight: 300;
  font-size: 19px;
  line-height: 32px;
  text-align: justify;
  color: #3d3d3d;
  max-width: 600px;
}

.Landing_shops .banner .t4 {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 44px;
  text-align: center;
  color: #3d3d3d;
}

.Landing_shops .banner b {
  font-weight: 600;
}

.Landing_shops .banner .titr {
  position: relative;
}

.Landing_shops .banner .titr .v {
  position: absolute;
  top: 0;
  padding-right: 125px;
}

.Landing_shops .banner .titr .v svg {
  margin: auto;
}

@media screen and (max-width: 1200px) {
  .Landing_shops .banner {
    flex-direction: column !important;
    background-image: url(images/landings/shops/banner_background_mobile.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 100% -200%;
  }
  .Landing_shops .banner div {
    align-items: center !important;
    justify-content: center !important;
  }
  .Landing_shops .banner .t1 {
    font-size: 28px;
  }
  .Landing_shops .banner .titr .v {
    margin-right: -105px;
    padding: 0;
  }
}

@media screen and (max-width: 850px) {
  .Landing_shops .banner {
    background-position: 100% -7%;
  }
}

@media screen and (max-width: 768px) {
  .Landing_shops .banner {
    background-position: 100% -7%;
  }
  .Landing_shops .banner div {
    flex-direction: column;
    justify-content: center;
    align-items: self-start !important;
  }
  .Landing_shops .banner .titr .v {
    margin-right: 70px;
  }
}

.Landing_shops .divider {
  height: 1px;
  background: #e4e4e4;
  transform: rotate(-8deg);
}

.Landing_shops .sellersCards:before {
  content: "";
  width: 20%;
  height: 53%;
  position: absolute;
  background-image: url(images/landings/shops/befor.svg);
  background-size: 65%;
  background-repeat: no-repeat;
  background-position: right;
  z-index: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  .Landing_shops .sellersCards:before {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .Landing_shops .sellersCards:before {
    display: none !important;
  }
}

.Landing_shops .sellersCards .titletitr1 {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 44px;
  text-align: center;
  color: #c3c6e8;
}

.Landing_shops .sellersCards .main {
  background: #f2f3f6;
  border-radius: 48px;
}

@media screen and (max-width: 1600px) {
  .Landing_shops .sellersCards .main {
    z-index: 1;
  }
}

.Landing_shops .sellersCards .vendorTab {
  border-radius: 48px;
  border: none;
  min-width: 140px;
  margin: 0 !important;
}

.Landing_shops .sellersCards .vendorTab p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  color: #c3c6e8;
}

.Landing_shops .sellersCards .vendorTab button {
  border-radius: 48px;
  width: 80px;
  height: 80px;
  border: 1px solid #fafcfe;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55%;
  background-color: inherit;
}

.Landing_shops .sellersCards .digital button {
  background-color: #fafcfe;
  background-image: url(images/landings/shops/vendors/digital.svg);
}

.Landing_shops .sellersCards .digital .active {
  background-color: #ff6f5e;
  background-image: url(images/landings/shops/vendors/digital_mobile.svg);
}

.Landing_shops .sellersCards .clothes button {
  background-color: #fafcfe;
  background-image: url(images/landings/shops/vendors/clothes.svg);
}

.Landing_shops .sellersCards .clothes .active {
  background-color: #ff6f5e;
  background-image: url(images/landings/shops/vendors/clothes_mobile.svg);
}

.Landing_shops .sellersCards .kitchen button {
  background-color: #fafcfe;
  background-image: url(images/landings/shops/vendors/kitchen.svg);
}

.Landing_shops .sellersCards .kitchen .active {
  background-color: #ff6f5e;
  background-image: url(images/landings/shops/vendors/kitchen_mobile.svg);
}

.Landing_shops .sellersCards .gold button {
  background-color: #fafcfe;
  background-image: url(images/landings/shops/vendors/gold.svg);
}

.Landing_shops .sellersCards .gold .active {
  background-color: #ff6f5e;
  background-image: url(images/landings/shops/vendors/gold_mobile.svg);
}

.Landing_shops .sellersCards .tourism button {
  background-color: #fafcfe;
  background-image: url(images/landings/shops/vendors/tourism.svg);
}

.Landing_shops .sellersCards .tourism .active {
  background-color: #ff6f5e;
  background-image: url(images/landings/shops/vendors/tourism_mobile.svg);
}

.Landing_shops .sellersCards .health button {
  background-color: #fafcfe;
  background-image: url(images/landings/shops/vendors/health.svg);
}

.Landing_shops .sellersCards .health .active {
  background-color: #ff6f5e;
  background-image: url(images/landings/shops/vendors/health_mobile.svg);
}

.Landing_shops .sellersCards .tools button {
  background-color: #fafcfe;
  background-image: url(images/landings/shops/vendors/tools.svg);
}

.Landing_shops .sellersCards .tools .active {
  background-color: #ff6f5e;
  background-image: url(images/landings/shops/vendors/tools_mobile.svg);
}

.Landing_shops .sellersCards .others button {
  background-color: #fafcfe;
  background-image: url(images/landings/shops/vendors/others.svg);
}

.Landing_shops .sellersCards .others .active {
  background-color: #ff6f5e;
  background-image: url(images/landings/shops/vendors/others_mobile.svg);
}

.Landing_shops .sellersCards .nav-tabs {
  border-bottom: 1px solid #dfe1f3;
  padding-bottom: 25px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  height: fit-content;
  justify-content: start;
  align-items: start;
  margin-top: -55px;
}

@media screen and (max-width: 1200px) {
  .Landing_shops .sellersCards .nav-tabs {
    border: none;
  }
}

.Landing_shops .sellersCards .nav-tabs::-webkit-scrollbar {
  display: none;
}

.Landing_shops .sellersCards .vendors {
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.Landing_shops .sellersCards .vendors .sellerGroup {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.Landing_shops .sellersCards .vendors .sellerGroup .sellerCard {
  position: relative;
  max-width: 308px;
  max-height: 308px;
  min-width: 208px;
  min-height: 208px;
  display: flex;
}

.Landing_shops .sellersCards .vendors .sellerGroup .sellerCard .seller {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #f2f3f6;
  box-sizing: border-box;
  border-radius: 34px;
  margin-top: 25px;
  background-color: white;
  height: 100%;
  box-shadow: -14px 9px 40px 1px rgba(48, 53, 124, 0.04);
  min-width: 208px;
  min-height: 208px;
}

.Landing_shops
  .sellersCards
  .vendors
  .sellerGroup
  .sellerCard
  .seller
  .sellerdivlogo {
  background: #ffffff;
  border: 6px solid #fafcfe;
  border-radius: 50%;
  margin-top: -30px;
  top: 0;
  position: absolute;
  width: 70px;
  height: 70px;
}

.Landing_shops
  .sellersCards
  .vendors
  .sellerGroup
  .sellerCard
  .seller
  .sellerdivlogo
  .sellerImg1 {
  aspect-ratio: 1.1;
  object-fit: contain;
}

.Landing_shops
  .sellersCards
  .vendors
  .sellerGroup
  .sellerCard
  .seller
  .sellerText1 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.Landing_shops
  .sellersCards
  .vendors
  .sellerGroup
  .sellerCard
  .seller
  .sellerurltext {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}

.Landing_shops
  .sellersCards
  .vendors
  .sellerGroup
  .sellerCard
  .seller
  .sellerdetaildiv
  .sellerdivimg {
  background-color: #30357c;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  height: 24px;
}

.Landing_shops
  .sellersCards
  .vendors
  .sellerGroup
  .sellerCard
  .seller
  .sellerdetaildiv
  .sellerdivimg
  img {
  width: 16px;
  height: 16px;
  aspect-ratio: 1.1;
}

.Landing_shops
  .sellersCards
  .vendors
  .sellerGroup
  .sellerCard
  .seller
  .sellerdetaildiv
  .sellerdivcategory {
  background: #dfe1f3;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  height: 100%;
}

.Landing_shops
  .sellersCards
  .vendors
  .sellerGroup
  .sellerCard
  .seller
  .sellerdetaildiv
  .sellerdivcategory
  .sellerText2 {
  font-weight: 500;
  font-size: 11px;
  line-height: 24px;
  color: #30357c;
}

.Landing_shops .sellersCards .vendors .sellerGroup .sellerCard .sellerHover {
  display: none;
}

@media screen and (max-width: 480px) {
  .Landing_shops .sellersCards .vendors .sellerGroup .sellerCard .sellerHover {
    display: none;
  }
}

@media screen and (max-width: 568px) {
  .Landing_shops .sellersCards .vendors .sellerGroup .sellerCard {
    min-width: unset;
    width: 160px;
    margin: 15px 3px !important;
  }
  .Landing_shops .sellersCards .vendors .sellerGroup .sellerCard .seller {
    min-width: unset;
    width: 160px;
  }
  .Landing_shops
    .sellersCards
    .vendors
    .sellerGroup
    .sellerCard
    .seller
    .sellerText1 {
    font-size: 15px;
  }
}

.Landing_shops .sellersCards .vendors .sellerGroup .sellerCard:hover {
  min-width: 160px;
  min-height: 208px;
}

.Landing_shops
  .sellersCards
  .vendors
  .sellerGroup
  .sellerCard:hover
  .sellerHover {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  border-radius: 24px;
  min-width: 160px;
  min-height: 208px;
}

.Landing_shops
  .sellersCards
  .vendors
  .sellerGroup
  .sellerCard:hover
  .sellerHoverButton {
  background: #16d8a4;
  border-radius: 2vw;
  font-style: normal;
  font-size: 16px;
  line-height: 40px;
  display: flex;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  border-style: none;
  min-height: 40px;
}

.Landing_shops .sellersCards .vendors .sellerGroup .sellerCard:hover .seller {
  background: rgba(255, 255, 255, 0.16);
  filter: blur(6px);
  border-radius: 24px;
  min-width: 160px;
  min-height: 208px;
}

.Landing_shops .sellersCards .vendors .sellerGroup .sellerCard:hover img {
  width: 40px;
}

.Landing_shops .sellersCards .vendors .sellerGroup .AllSellers {
  position: relative;
  max-width: 308px;
  max-height: 308px;
  min-width: 208px;
  min-height: 208px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #f2f3f6;
  box-sizing: border-box;
  border-radius: 34px;
  margin-top: 40px !important;
  background-color: white;
  height: 100%;
  box-shadow: -14px 9px 40px 1px rgba(48, 53, 124, 0.04);
}

.Landing_shops .sellersCards .vendors .sellerGroup .AllSellers p {
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  text-align: center;
  color: #8b8b8b;
}

@media screen and (max-width: 568px) {
  .Landing_shops .sellersCards .vendors .sellerGroup .AllSellers {
    min-width: unset;
    width: 160px;
    margin: 25px 3px 0 0 !important;
  }
}

.Landing_shops .Features {
  flex-wrap: wrap;
}

.Landing_shops .Features .titr1 {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 44px;
  text-align: center;
  color: #c3c6e8;
}

.Landing_shops .Features .FeatureItem {
  background: #ffffff;
  border: 1px solid #f2f3f6;
  box-shadow: -14px 9px 40px 1px rgba(48, 53, 124, 0.04);
  border-radius: 24px;
  justify-content: start;
  align-items: flex-start;
  min-width: 344px;
  min-height: 344px;
}

.Landing_shops .Features .FeatureItem .FeatureItemDeatil {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.Landing_shops .Features .FeatureItem .FeatureItemDeatil .t2 {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 44px;
  text-align: right;
  color: #00569f;
}

.Landing_shops .Features .FeatureItem .FeatureItemDeatil .t3 {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  text-align: justify;
  color: #8b8b8b;
}

.Landing_shops .Features .collapsed {
  justify-content: start;
  align-items: center;
  padding: 0 !important;
  width: fit-content;
  min-width: fit-content;
}

.Landing_shops .Features .collapsed .t1 {
  display: flex !important;
  writing-mode: vertical-rl;
  text-align: center;
  transform: rotate(180deg);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  text-align: right;
  color: #3d3d3d;
}

.Landing_shops .Features .collapsed:hover {
  position: relative;
  filter: blur(0.6px);
  background-color: transparent;
}

.Landing_shops .Features .collapsed:hover .hover {
  display: flex !important;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  .Landing_shops .Features .FeatureItemDiv {
    flex-wrap: nowrap;
    flex-direction: column !important;
  }
  .Landing_shops .Features .FeatureItemDiv .FeatureItem {
    height: fit-content;
    width: 90%;
    min-width: 334px;
    max-width: 424px;
  }
  .Landing_shops .Features .FeatureItemDiv .FeatureItem .t1 {
    transform: none;
    writing-mode: unset;
  }
  .Landing_shops .Features .FeatureItemDiv .FeatureItem .FeatureItemDeatil {
    justify-content: space-around !important;
  }
  .Landing_shops .Features .FeatureItemDiv .FeatureItem .FeatureItemDeatil .t2 {
    font-size: 17px;
  }
  .Landing_shops
    .Features
    .FeatureItemDiv
    .FeatureItem
    .FeatureItemDeatil
    .divider {
    display: none;
  }
  .Landing_shops .Features .FeatureItemDiv .collapsed {
    height: fit-content;
  }
  .Landing_shops .Features .FeatureItemDiv .collapsed .ItemImg {
    position: unset;
  }
  .Landing_shops .Features .FeatureItemDiv .collapsed .t2 {
    padding-right: 0 !important;
  }
}

.Landing_shops .Comments {
  position: relative;
}

.Landing_shops .Comments .beforShadow {
  width: 156px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(
    270deg,
    #fafcfe 0%,
    #fafcfe 67.71%,
    rgba(250, 252, 254, 0) 100%
  );
  border-radius: 32px 0px 0px 32px;
  z-index: 10;
}

.Landing_shops .Comments .afterShadow {
  width: 156px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(
    270deg,
    #fafcfe 0%,
    #fafcfe 67.71%,
    rgba(250, 252, 254, 0) 100%
  );
  border-radius: 32px 0px 0px 32px;
  transform: rotate(180deg);
  z-index: 10;
}

.Landing_shops .Comments .HomePageSwiper {
  padding: 100px 0;
  position: relative;
}

.Landing_shops .Comments .HomePageSwiper .swiper-slide-active {
  transform: scale(1.3) !important;
  z-index: 2;
  margin-left: -60px !important;
  animation: fadeIn ease 0.8s;
  -webkit-animation: fadeIn ease 0.8s;
  -moz-animation: fadeIn ease 0.8s;
  -o-animation: fadeIn ease 0.8s;
  -ms-animation: fadeIn ease 0.8s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Landing_shops .Comments .HomePageSwiper .swiper-slide-active .item {
  max-width: 250px;
  min-width: 230px;
  background: #00569f;
  box-shadow: 2px 20px 32px 1px rgba(0, 86, 159, 0.16);
  padding: 4px !important;
}

.Landing_shops .Comments .HomePageSwiper .swiper-slide-active .item .whiteDiv {
  background-color: white;
  border-radius: 40px;
  padding: 20px 0;
  border-bottom: 10px solid #003a6c;
  pointer-events: none;
  user-select: none;
}

.Landing_shops .Comments .HomePageSwiper .swiper-slide-active .item .play {
  display: flex !important;
}

.Landing_shops
  .Comments
  .HomePageSwiper
  .swiper-slide-active
  .item
  .play
  button {
  background: none;
  border: none;
}

.Landing_shops .Comments .HomePageSwiper .swiper-slide-active .testimonial {
  display: flex !important;
  position: absolute;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .Landing_shops .Comments .HomePageSwiper .swiper-slide-active .item {
    width: 240px !important;
  }
}

.Landing_shops .Comments .HomePageSwiper .item {
  background: #ffffff;
  border: 1px solid #dfe1f3;
  border-radius: 40px;
  min-width: 250px;
}

.Landing_shops .Comments .HomePageSwiper .item .whiteDiv {
  pointer-events: none;
  user-select: none;
}

.Landing_shops .Comments .HomePageSwiper .item .profile {
  border: 4px solid #f2f3f6;
  border-radius: 100%;
}

.Landing_shops .Comments .HomePageSwiper .item .shopname {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #3d3d3d;
}

.Landing_shops .Comments .HomePageSwiper .item .detail {
  font-style: normal;
  font-weight: 300;
  font-size: 13px;
  line-height: 24px;
  text-align: center;
  color: #3d3d3d;
}

.Landing_shops .Comments .titletitr2 {
  background-size: contain;
  width: fit-content;
  background-position: center;
}

.Landing_shops .Comments .CommentVideo .modal-content {
  background-color: black;
}

.Landing_shops .Comments .CommentVideo .modal-content .modal-header {
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Landing_shops
  .Comments
  .CommentVideo
  .modal-content
  .modal-header
  .modal-title {
  font-size: 20px;
  font-weight: 500;
  color: white;
}

.Landing_shops .Comments .CommentVideo .modal-content .modal-body iframe {
  border-radius: 10px;
  height: 250px;
}

.Landing_shops .Comments .CommentVideo .modal-content .modal-footer {
  border: none;
}

@media screen and (max-width: 992px) {
  .Landing_shops .Comments .beforShadow {
    width: 15%;
  }
  .Landing_shops .Comments .afterShadow {
    width: 15%;
  }
}

@media screen and (max-width: 768px) {
  .Landing_shops .Comments {
    width: 100% !important;
  }
  .Landing_shops .Comments .beforShadow {
    width: 10%;
  }
  .Landing_shops .Comments .afterShadow {
    width: 10%;
  }
}

@media screen and (max-width: 480px) {
  .Landing_shops .Comments .beforShadow {
    display: none;
  }
  .Landing_shops .Comments .afterShadow {
    display: none;
  }
  .Landing_shops .Comments .modal-body iframe {
    height: auto !important;
    width: auto !important;
  }
}

@media screen and (max-width: 768px) {
  .titr2 {
    font-size: 24px;
  }
}

.Landing_shops .ctaBanner {
  background-image: url(images/landings/ctaBanner/bg.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top;
}

.Landing_shops .ctaBanner .main .title {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 44px;
  text-align: right;
  color: #3d3d3d;
}

.Landing_shops .ctaBanner .main .des {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  text-align: justify;
  max-width: 524px;
}

.Landing_shops .ctaBanner .main .buttons .question {
  border: 2px solid #3d3d3d;
  border-radius: 24px;
}

.Landing_shops .ctaBanner .rightImage {
  max-height: 100%;
  max-width: 100%;
}

@media screen and (max-width: 1200px) {
  .Landing_shops .ctaBanner {
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-size: cover;
  }
  .Landing_shops .ctaBanner .main {
    margin-top: 30px;
  }
  .Landing_shops .ctaBanner .main .buttons {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .Landing_shops .ctaBanner {
    padding: 30px;
  }
}

.sellerPage .banner .coin {
  aspect-ratio: unset;
}

@media screen and (max-width: 1200px) {
  .sellerPage .banner {
    background-size: cover;
    background-position: top;
  }
}

@media screen and (max-width: 850px) {
  .sellerPage .banner {
    background-size: contain;
    background-position: 100% -7%;
  }
}

.HomePage {
  direction: rtl;
  background: #fafcfe;
}

.HomePage .HeroSection .Right {
  background-image: url(images/HomePage/Circle.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  overflow: hidden;
}

.HomePage .HeroSection .Right .HandMobile {
  display: none;
}

.HomePage .HeroSection .Right .Hand {
  height: 90vh;
  aspect-ratio: 3.2;
  object-fit: contain;
  margin-right: -70px;
}

.HomePage .HeroSection .Left {
  height: 100%;
  direction: rtl;
}

.HomePage .HeroSection .Left .t1 {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  text-align: right;
  color: #3d3d3d;
}

.HomePage .HeroSection .Left .t2 {
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  text-align: right;
  color: #3d3d3d;
}

.LandingMarket .HeroSection .Left .text {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 36px;
  text-align: right;
  color: #ffffff;
}

.HomePage .HeroSection .Left .des {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-align: right;
  color: #8b8b8b;
}

@media screen and (min-width: 768px) {
  .HomePage .HeroSection .Left .des {
    width: 490px !important;
  }
}

.HomePage .HeroSection .Left .register {
  background: radial-gradient(
    68.16% 905.6% at 78.09% 44.53%,
    #3280c1 0%,
    #028bff 19.27%,
    #028bff 100%
  );
  box-shadow: -5px 19px 40px rgba(2, 139, 255, 0.12);
  border-radius: 24px;
  border: none;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  position: relative;
  min-width: 240px !important;
  height: 64px !important;
}

.HomePage .HeroSection .Left .register img {
  position: absolute;
  right: -12px;
  top: 0;
}

.HomePage .HeroSection .Left .calc {
  background: #ffffff;
  border: 1px solid #028bff;
  border-radius: 24px;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  text-align: right;
  color: #028bff;
  min-width: 190px !important;
}

.HomePage .HeroSection .Left .divider {
  background: #e2ebf0;
  height: 1px;
}

.HomePage .HeroSection .Left .Movie button {
  border: none;
  background-color: unset;
  background-image: url(images/HomePage/tavasoli.png);
  background-repeat: no-repeat;
  width: 168px;
  height: 195px;
}

.HomePage .HeroSection .Left .Movie button:hover {
  background-image: url(images/HomePage/tavasoli2.png);
}

.HomePage .HeroSection .Left .Movie .title {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 44px;
  text-align: right;
  color: #3d3d3d;
}

.HomePage .HeroSection .Left .Movie .descript {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-align: right;
  color: #8b8b8b;
}

.HomePage .HeroSection .Left .Movie .descript .blue {
  color: #028bff;
}

@media screen and (min-width: 767px) and (max-width: 1199px) {
  .HomePage .HeroSection .Right {
    width: 58.3% !important;
    background-size: cover;
    height: 850px;
  }
  .HomePage .HeroSection .Right .Hand {
    height: 100%;
    margin-top: -70px !important;
  }
  .HomePage .HeroSection .Left {
    position: relative;
  }
  .HomePage .HeroSection .Left .t1 {
    font-size: 16px;
    line-height: 24px;
  }
  .HomePage .HeroSection .Left .t2 {
    font-size: 18px;
    line-height: 24px;
  }
  .HomePage .HeroSection .Left .des {
    width: 275px !important;
  }
  .HomePage .HeroSection .Left .CTA {
    flex-direction: column !important;
  }
  .HomePage .HeroSection .Left .CTA .register {
    min-width: 206px !important;
  }
  .HomePage .HeroSection .Left .CTA .register img {
    width: 25% !important;
    top: auto;
  }
  .HomePage .HeroSection .Left .CTA .calc {
    margin: 10px 0 !important;
    min-width: 206px !important;
  }
  .HomePage .HeroSection .Left .divider {
    width: 80%;
  }
  .HomePage .HeroSection .Left .Movie {
    position: absolute;
    bottom: -220px;
    right: -112px;
  }
  .HomePage .HeroSection .Left .Movie .title {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .HomePage .HeroSection {
    flex-direction: column;
  }
  .HomePage .HeroSection .Right {
    width: 90% !important;
    background-image: url(images/HomePage/Circle_mobile.svg);
    background-size: 100%;
  }
  .HomePage .HeroSection .Right .Hand {
    display: none;
  }
  .HomePage .HeroSection .Right .HandMobile {
    display: flex;
    max-width: 75vw;
  }
  .HomePage .HeroSection .Left {
    width: 100% !important;
    padding-top: 0 !important;
    margin-top: -120px;
  }
  .HomePage .HeroSection .Left .t1 {
    font-size: 16px;
    line-height: 28px;
    margin-top: 5px !important;
  }
  .HomePage .HeroSection .Left .t2 {
    font-size: 22px;
    line-height: 44px;
    margin-top: 0 !important;
  }
  .HomePage .HeroSection .Left .des {
    width: 100% !important;
    padding: 0 90px !important;
    position: relative;
  }
  .HomePage .HeroSection .Left .CTA {
    width: 100% !important;
    flex-direction: column;
  }
  .HomePage .HeroSection .Left .CTA .calc {
    margin: 20px 0 !important;
    width: 240px !important;
    text-align: center;
  }
  .HomePage .HeroSection .Left .divider {
    width: 90% !important;
    margin: auto;
  }
  .HomePage .HeroSection .Left .Movie {
    position: relative;
    justify-content: center !important;
  }
  .HomePage .HeroSection .Left .Movie button {
    padding: 0 !important;
    width: 153px;
  }
  .HomePage .HeroSection .Left .Movie .title {
    font-size: 22px;
  }
  .HomePage .HeroSection .Left .Movie .descript {
    display: none !important;
  }
  .HomePage .HeroSection .Left .Movie .mobile {
    display: flex !important;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-align: right;
    color: #8b8b8b;
  }
  .HomePage .HeroSection .Left .Movie .mobile .blue {
    color: #028bff;
  }
  .HomePage .HeroSection .Left .Movie div {
    padding-right: 15px;
  }
  .HomePage .HeroSection .Left .des:before {
    background-image: url(images/HomePage/RightVector.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    content: "";
    height: 265%;
    position: absolute;
    top: -45px;
    right: 0;
    width: 20%;
  }
  .HomePage .HeroSection .Left .Movie::after {
    background-image: url(images/HomePage/LeftVector.svg);
    /* background-position: 50%; */
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: 100% 122%;
    content: "";
    height: 112%;
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 20%;
  }
}

@media screen and (max-width: 568px) {
  .HomePage .HeroSection .Right {
    width: 100% !important;
  }
  .HomePage .HeroSection .Right .HandMobile {
    max-width: 100% !important;
  }
  .HomePage .HeroSection .Left .des {
    padding: 0 20px !important;
  }
  .HomePage .HeroSection .Left .des:before {
    background-image: url(images/HomePage/RightVector.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    content: "";
    height: 210%;
    position: absolute;
    top: -50px;
    right: 0;
    width: 45%;
  }
  .HomePage .HeroSection .Movie:after {
    width: 40% !important;
  }
}

.HomePage .Services {
  position: relative;
  background: linear-gradient(
    90.05deg,
    #d5e2ea 0.04%,
    #e2ebf0 5.25%,
    #f7f7f7 44.28%,
    #ecf2f5 60.94%,
    #e2ebf0 93.32%,
    #d5e2ea 99.97%
  );
  border: 1px solid #d1dfe9;
  border-right: 0;
  border-left: 0;
}

.HomePage .Services .Items {
  background-image: url(images/HomePage/Feature_dots.svg);
  background-repeat: no-repeat;
  height: 100%;
  background-size: 100%;
}

.HomePage .Services .Items p {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 34px;
  text-align: right;
  color: #00569f;
}

.HomePage .Services :after {
  background-image: url(images/HomePage/Feature_after.svg);
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6%;
  opacity: 0.1;
}

.HomePage .Services :before {
  background-image: url(images/HomePage/Feature_befor.svg);
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 6%;
  opacity: 0.1;
}

@media screen and (max-width: 768px) {
  .HomePage .Services {
    border: none;
  }
  .HomePage .Services .Items {
    display: none !important;
  }
  .HomePage .Services .ItemsMobile {
    display: flex !important;
    flex-direction: column !important;
    background-image: url(images/HomePage/Feature_dots.svg);
    background-repeat: no-repeat;
    height: 100%;
    background-size: 100%;
  }
  .HomePage .Services .ItemsMobile p {
    font-style: normal;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 34px;
    text-align: right;
    color: #00569f;
  }
  .HomePage .Services .ItemsMobile img {
    width: 64px;
  }
  .HomePage .Services .ItemsMobile .green {
    color: #16d8a4;
  }
  .HomePage .Services :after {
    background-image: url(images/HomePage/Feature_after_mobile.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20%;
    opacity: 0.1;
  }
  .HomePage .Services :before {
    background-image: url(images/HomePage/Feature_befor_mobile.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 31%;
    opacity: 0.1;
  }
}

.HomePage .Features {
  flex-wrap: wrap;
}

.HomePage .Features .titr1 {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 44px;
  text-align: center;
  color: #c3c6e8;
}

.HomePage .Features .FeatureItem {
  background: #ffffff;
  border: 1px solid #f2f3f6;
  box-shadow: -14px 9px 40px 1px rgba(48, 53, 124, 0.04);
  border-radius: 24px;
  justify-content: start;
  align-items: flex-start;
  width: 22%;
  min-width: 400px;
  height: 260px;
}

.HomePage .Features .FeatureItem .FeatureItemDeatil {
  padding: 0 9px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.HomePage .Features .FeatureItem .FeatureItemDeatil .t2 {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 44px;
  text-align: right;
  color: #3d3d3d;
}

.HomePage .Features .FeatureItem .FeatureItemDeatil .divider {
  background: #f2f3f6;
  height: 1px;
}

.HomePage .Features .FeatureItem .FeatureItemDeatil .t3 {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  text-align: right;
  color: #8b8b8b;
}

.HomePage .Features .collapsed {
  justify-content: start;
  align-items: center;
  padding: 0 !important;
  width: fit-content;
  min-width: fit-content;
}

.HomePage .Features .collapsed .t1 {
  display: flex !important;
  writing-mode: vertical-rl;
  text-align: center;
  transform: rotate(180deg);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  text-align: right;
  color: #3d3d3d;
}

.HomePage .Features .collapsed:hover {
  position: relative;
  filter: blur(0.6px);
  background-color: transparent;
}

.HomePage .Features .collapsed:hover .hover {
  display: flex !important;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 1200px) {
  .HomePage .Features {
    flex-direction: column !important;
  }
  .HomePage .Features .FeatureItemDiv {
    flex-wrap: wrap;
  }
  .HomePage .Features .FeatureItemDiv .FeatureItem {
    width: 424px;
    height: fit-content;
  }
  .HomePage .Features .FeatureItemDiv .collapsed {
    width: 96px;
  }
}

@media screen and (max-width: 768px) {
  .HomePage .Features .titr2 {
    font-size: 24px;
  }
  .HomePage .Features .FeatureItemDiv {
    flex-wrap: nowrap;
    flex-direction: column !important;
  }
  .HomePage .Features .FeatureItemDiv .FeatureItem {
    height: fit-content;
    width: 90%;
    min-width: 334px;
    max-width: 424px;
    flex-direction: row !important;
  }
  .HomePage .Features .FeatureItemDiv .FeatureItem .t1 {
    transform: none;
    writing-mode: unset;
  }
  .HomePage .Features .FeatureItemDiv .FeatureItem .FeatureItemDeatil {
    height: 100%;
    justify-content: space-around !important;
  }
  .HomePage .Features .FeatureItemDiv .FeatureItem .FeatureItemDeatil .t2 {
    font-size: 17px;
  }
  .HomePage .Features .FeatureItemDiv .FeatureItem .ItemImg {
    position: absolute;
  }
  .HomePage .Features .FeatureItemDiv .FeatureItem .t2 {
    padding-right: 75px !important;
  }
  .HomePage .Features .FeatureItemDiv .collapsed {
    height: fit-content;
  }
  .HomePage .Features .FeatureItemDiv .collapsed .ItemImg {
    position: unset;
  }
  .HomePage .Features .FeatureItemDiv .collapsed .t2 {
    padding-right: 0 !important;
  }
}

.HomePage .Steps .titr1 {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 44px;
  text-align: center;
  color: #c3c6e8;
}

.HomePage .Steps .des {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  text-align: right;
  color: #3d3d3d;
  margin-bottom: 3% !important;
}

.HomePage .Steps .NiceButton {
  position: relative;
  max-width: 206px;
}

a {
  text-decoration: none;
}

.HomePage .Steps .NiceButton button,
.HomePage .Steps .NiceButton a {
  background: inherit;
  border-radius: 24px;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #3d3d3d;
  border: 2px solid #3d3d3d;
  z-index: 1;
}

.HomePage .Steps .NiceButton div {
  position: absolute;
  height: 64px;
  background: #16d8a4;
  border-radius: 24px;
  z-index: 0;
  top: 5px;
  left: 6px;
}

@media screen and (max-width: 768px) {
  .HomePage .Steps {
    flex-direction: column !important;
  }
  .HomePage .Steps .mobile {
    display: flex !important;
  }
  .HomePage .Steps .desktop {
    width: 100%;
    display: none !important;
  }
  .HomePage .Steps .titr1 {
    margin-right: 0 !important;
  }
  .HomePage .Steps .des {
    width: 80%;
    margin-top: 25px !important;
    font-weight: 400;
    max-width: 480px;
    margin-right: 0 !important;
  }
  .HomePage .Steps .NiceButton {
    position: relative;
    max-width: 244px;
    margin-right: 0 !important;
  }
  .HomePage .Steps .NiceButton button,
  .HomePage .Steps .NiceButton a {
    background: inherit;
    border-radius: 24px;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #3d3d3d;
    border: 2px solid #3d3d3d;
    z-index: 1;
  }
  .HomePage .Steps .NiceButton div {
    position: absolute;
    height: 64px;
    background: #16d8a4;
    border-radius: 24px;
    z-index: 0;
    top: 5px;
    left: 6px;
  }
  .HomePage .Steps .stepImg {
    width: 100%;
    max-width: 238px;
  }
}

.HomePage .Comments {
  position: relative;
}

.HomePage .Comments .beforShadow {
  width: 156px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(
    270deg,
    #fafcfe 0%,
    #fafcfe 67.71%,
    rgba(250, 252, 254, 0) 100%
  );
  border-radius: 32px 0px 0px 32px;
  z-index: 10;
}

.HomePage .Comments .afterShadow {
  width: 156px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(
    270deg,
    #fafcfe 0%,
    #fafcfe 67.71%,
    rgba(250, 252, 254, 0) 100%
  );
  border-radius: 32px 0px 0px 32px;
  transform: rotate(180deg);
  z-index: 10;
}

.HomePage .Comments .HomePageSwiper {
  padding: 100px 0;
  position: relative;
}

.HomePage .Comments .HomePageSwiper .swiper-slide-active {
  transform: scale(1.3) !important;
  z-index: 2;
  margin-left: -60px !important;
  animation: fadeIn ease 0.8s;
  -webkit-animation: fadeIn ease 0.8s;
  -moz-animation: fadeIn ease 0.8s;
  -o-animation: fadeIn ease 0.8s;
  -ms-animation: fadeIn ease 0.8s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.HomePage .Comments .HomePageSwiper .swiper-slide-active .item {
  max-width: 250px;
  min-width: 230px;
  background: #00569f;
  box-shadow: 2px 20px 32px 1px rgba(0, 86, 159, 0.16);
  padding: 4px !important;
}

.HomePage .Comments .HomePageSwiper .swiper-slide-active .item .whiteDiv {
  background-color: white;
  border-radius: 40px;
  padding: 20px 0;
  border-bottom: 10px solid #003a6c;
  pointer-events: none;
  user-select: none;
}

.HomePage .Comments .HomePageSwiper .swiper-slide-active .item .play {
  display: flex !important;
}

.HomePage .Comments .HomePageSwiper .swiper-slide-active .item .play button {
  background: none;
  border: none;
}

.HomePage .Comments .HomePageSwiper .swiper-slide-active .testimonial {
  display: flex !important;
  position: absolute;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .HomePage .Comments .HomePageSwiper .swiper-slide-active .item {
    width: 240px !important;
  }
}

.HomePage .Comments .HomePageSwiper .item {
  background: #ffffff;
  border: 1px solid #dfe1f3;
  border-radius: 40px;
  min-width: 250px;
}

.HomePage .Comments .HomePageSwiper .item .whiteDiv {
  pointer-events: none;
  user-select: none;
}

.HomePage .Comments .HomePageSwiper .item .profile {
  border: 4px solid #f2f3f6;
  border-radius: 100%;
}

.HomePage .Comments .HomePageSwiper .item .shopname {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #3d3d3d;
}

.HomePage .Comments .HomePageSwiper .item .detail {
  font-style: normal;
  font-weight: 300;
  font-size: 13px;
  line-height: 24px;
  text-align: center;
  color: #3d3d3d;
}

.HomePage .Comments .titletitr2 {
  background-size: contain;
  width: fit-content;
  background-position: center;
}

.HomePage .Comments .CommentVideo .modal-content {
  background-color: black;
}

.HomePage .Comments .CommentVideo .modal-content .modal-header {
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.HomePage .Comments .CommentVideo .modal-content .modal-header .modal-title {
  font-size: 20px;
  font-weight: 500;
  color: white;
}

.HomePage .Comments .CommentVideo .modal-content .modal-body iframe {
  border-radius: 10px;
  height: 250px;
}

.HomePage .Comments .CommentVideo .modal-content .modal-footer {
  border: none;
}

@media screen and (max-width: 992px) {
  .HomePage .Comments .beforShadow {
    width: 15%;
  }
  .HomePage .Comments .afterShadow {
    width: 15%;
  }
}

@media screen and (max-width: 768px) {
  .HomePage .Comments {
    width: 100% !important;
  }
  .HomePage .Comments .beforShadow {
    width: 10%;
  }
  .HomePage .Comments .afterShadow {
    width: 10%;
  }
}

@media screen and (max-width: 480px) {
  .HomePage .Comments .beforShadow {
    display: none;
  }
  .HomePage .Comments .afterShadow {
    display: none;
  }
  .HomePage .Comments .modal-body iframe {
    height: auto !important;
    width: auto !important;
  }
}

@media screen and (max-width: 768px) {
  .titr2 {
    font-size: 24px;
  }
}

.CreditGuidePage {
  direction: rtl;
}

.CreditGuidePage .titleDiv .imgDiv {
  background-image: url(images/CreditGuidePage/topCricle.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.CreditGuidePage .titleDiv p {
  font-style: normal;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 44px;
  text-align: right;
  color: #30357c;
}

@media screen and (max-width: 768px) {
  .CreditGuidePage .titleDiv .detail {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 480px) {
  .CreditGuidePage .titleDiv .detail {
    margin-top: 20px;
  }
  .CreditGuidePage .titleDiv .detail div {
    width: 100% !important;
    margin-top: 15px !important;
  }
}

.CreditGuidePage .divider {
  background: #f2f3f6;
  height: 1px;
}

.CreditGuidePage .flowDiv {
  position: relative;
}

.CreditGuidePage .flowDiv .left {
  border: 2px dashed #8a90d2;
  border-right: 2px dashed white !important;
  border-top-left-radius: 131px;
  border-bottom-left-radius: 131px;
  border-right: 0;
  z-index: 1;
  height: 224px;
}

@media screen and (max-width: 768px) {
  .CreditGuidePage .flowDiv .left .des {
    width: 254px;
    margin-left: 5px !important;
  }
}

.CreditGuidePage .flowDiv .left .imgDiv {
  background: linear-gradient(90deg, #16222a 0%, #3a6073 100%);
  border-radius: 100%;
}

@media screen and (max-width: 768px) {
  .CreditGuidePage .flowDiv .left .imgDiv {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .CreditGuidePage .flowDiv .left .imgDiv img {
    width: 48px;
    height: 48px;
  }
}

.CreditGuidePage .flowDiv .left .t1 {
  font-style: normal;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 44px;
  color: #3d3d3d;
  text-align: right;
}

@media screen and (max-width: 1200px) {
  .CreditGuidePage .flowDiv .left .t1 {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .CreditGuidePage .flowDiv .left .t1 {
    font-size: 16px;
  }
}

.CreditGuidePage .flowDiv .left .t2 {
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 28px;
  color: #8b8b8b;
  text-align: right;
}

@media screen and (max-width: 1200px) {
  .CreditGuidePage .flowDiv .left .t2 {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 768px) {
  .CreditGuidePage .flowDiv .left .t2 {
    font-size: 13px;
  }
}

.CreditGuidePage .flowDiv .right {
  border: 2px dashed #8a90d2;
  border-left: 2px dashed white !important;
  border-top-right-radius: 131px;
  border-bottom-right-radius: 131px;
  border-left: 0;
  z-index: 1;
  margin-left: 30px;
  height: 224px;
}

@media screen and (max-width: 768px) {
  .CreditGuidePage .flowDiv .right .des {
    width: 254px;
    margin-right: 25px !important;
  }
}

.CreditGuidePage .flowDiv .right .imgDiv {
  background: linear-gradient(90deg, #16222a 0%, #3a6073 100%);
  border-radius: 100%;
}

@media screen and (max-width: 768px) {
  .CreditGuidePage .flowDiv .right .imgDiv {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .CreditGuidePage .flowDiv .right .imgDiv img {
    width: 48px;
    height: 48px;
  }
}

.CreditGuidePage .flowDiv .right .t1 {
  font-style: normal;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 44px;
  color: #3d3d3d;
  text-align: right;
}

@media screen and (max-width: 1200px) {
  .CreditGuidePage .flowDiv .right .t1 {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .CreditGuidePage .flowDiv .right .t1 {
    font-size: 16px;
  }
}

.CreditGuidePage .flowDiv .right .t2 {
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 28px;
  color: #8b8b8b;
  text-align: right;
}

@media screen and (max-width: 1200px) {
  .CreditGuidePage .flowDiv .right .t2 {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 768px) {
  .CreditGuidePage .flowDiv .right .t2 {
    font-size: 13px;
  }
}

.CreditGuidePage .flowDiv .free {
  position: absolute;
}

.CreditGuidePage .flowDiv .free .t3 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 44px;
  text-align: center;
  background: linear-gradient(90deg, #514a9d 0%, #24c6dc 65.1%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media screen and (max-width: 768px) {
  .CreditGuidePage .flowDiv .free .t3 {
    font-size: 16px;
    line-height: 28px;
  }
}

.CreditGuidePage .flowDiv .free .t4 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 31px;
  text-align: center;
  color: #30357c;
}

@media screen and (max-width: 768px) {
  .CreditGuidePage .flowDiv .free .t4 {
    display: none;
  }
}

.CreditGuidePage .flowDiv .numbers {
  position: absolute;
  max-width: 81px;
}

.CreditGuidePage .flowDiv .numbers div {
  z-index: 2;
  background-color: #fafcfe;
  margin: 0 0 143px 0px !important;
  border-radius: 100%;
}

.CreditGuidePage .flowDiv .numbers div p {
  font-style: normal;
  font-weight: 700;
  font-size: 56px;
  line-height: 81px;
  text-align: center;
  background: linear-gradient(90deg, #514a9d 0%, #24c6dc 65.1%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media screen and (max-width: 1200px) {
  .CreditGuidePage .flowDiv .numbers div p {
    font-size: 46px;
  }
}

@media screen and (max-width: 768px) {
  .CreditGuidePage .flowDiv .numbers div {
    width: 66px;
    margin: 0 0 159px 0px !important;
    min-height: 66px;
  }
  .CreditGuidePage .flowDiv .numbers div p {
    font-size: 26px;
    line-height: 44px;
  }
  .CreditGuidePage .flowDiv .numbers div img {
    margin-top: -20px;
  }
}

@media screen and (max-width: 768px) {
  .CreditGuidePage .flowDiv .numbers {
    min-width: 66px;
  }
}

.CreditGuidePage .flowDiv .littleDiv {
  height: 224px;
  border-top: 2px dashed #8a90d2;
}

@media screen and (max-width: 850px) {
  .CreditGuidePage .flowDiv .littleDiv {
    display: none;
  }
}

.CreditGuidePage .flowDiv .miniDiv {
  border-left: 1px dashed #c3c6e8;
  height: 120px;
  position: absolute;
  right: 0;
  top: 0;
  margin-top: -20px;
  z-index: 2;
}

.CreditGuidePage .flowDiv .miniDiv img {
  position: absolute;
  left: 20%;
  bottom: 5px;
}

.CreditGuidePage .flowDiv .miniDiv p {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 44px;
  text-align: right;
  color: #30357c;
}

@media screen and (max-width: 1200px) {
  .CreditGuidePage .flowDiv .miniDiv p {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .CreditGuidePage .flowDiv .miniDiv p {
    font-size: 14px;
    font-weight: 700;
  }
}

@media screen and (max-width: 1200px) {
  .CreditGuidePage .flowDiv .miniDiv {
    margin-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .CreditGuidePage .flowDiv .miniDiv {
    height: 100px;
  }
}

.CreditGuidePage .flowDiv .flesh {
  width: 65px;
  position: absolute;
  bottom: 0;
  margin-bottom: -48px;
  right: 50%;
}

.RangeMoney {
  position: absolute;
  left: 5%;
  z-index: 1;
  top: 14%;
}

@media screen and (max-width: 768px) {
  .RangeMoney {
    width: 83.3% !important;
    left: 11%;
  }
}

.RangeMoney .slider-base {
  height: 10px;
  background-color: inherit;
}

.RangeMoney .slider-handle,
.RangeMoney .slider-handle-lower {
  width: 45px;
  height: 45px;
  margin-top: -13px;
  border-radius: 50%;
  background-color: #16d8a4;
  border: 5px solid #16d8a4;
  box-sizing: border-box;
  background-image: url("images/neworder/range_dot3.svg");
  background-repeat: no-repeat;
  background-size: 69% 60%;
  background-position: center;
  box-shadow: 0px 3.5px 46.6667px 1.16667px rgba(22, 216, 164, 0.9);
  right: 0 !important;
}

.RangeMoney .slider-connects {
  background-color: inherit;
  background-image: url(images/CalculatorLanding/dot.svg);
  background-size: contain;
  background-repeat: repeat-x;
  border-radius: 15px;
  height: 10px;
}

.RangeMoney .slider-connects .slider-connect {
  background-color: #16d8a4;
  border-radius: 24px;
}

.Calculator-landing {
  background: linear-gradient(
    188.53deg,
    #fcefb4 31.25%,
    rgba(252, 235, 151, 0) 107.29%
  );
  border: 1px solid #f2f3f6;
  box-shadow: inset 8px 0px 56px rgba(251, 199, 107, 0.6);
  border-radius: 40px;
  direction: rtl;
}

.Calculator-landing .UP {
  height: 70%;
  min-height: 425px;
  max-height: 475px;
  background: linear-gradient(152.88deg, #514a9d 15.99%, #24c6dc 84.93%);
  border: 4px solid #fdf4d6;
  box-shadow: 0px 16px 1px rgba(78, 134, 188, 0.1);
  border-radius: 40px;
  position: relative;
}

.Calculator-landing .UP .step {
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 28px;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .Calculator-landing .UP .step {
    width: 83.3% !important;
  }
}

.Calculator-landing .UP .step p {
  font-size: 14px;
  font-weight: 500;
}

.Calculator-landing .UP .step .big {
  font-size: 24px;
  font-weight: 500;
}

.Calculator-landing .UP .wave {
  position: absolute;
  bottom: 0;
}

.Calculator-landing .UP .Status {
  background: rgba(250, 252, 254, 0.8);
  box-shadow: 2px 4px 48px rgba(72, 97, 168, 0.12);
  backdrop-filter: blur(16px);
  border-radius: 40px;
  z-index: 1;
  min-width: 328px;
}

.Calculator-landing .UP .Status .uperDiv {
  background: rgba(250, 252, 254, 0.7);
  border: 1px solid #f2f3f6;
  box-shadow: 0px 0px 90px rgba(0, 86, 159, 0.08);
  backdrop-filter: blur(16px);
  border-radius: 40px;
}

.Calculator-landing .UP .Status .uperDiv .title {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  text-align: right;
  color: #3d3d3d;
}

.Calculator-landing .UP .Status .uperDiv .descript {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 44px;
  color: #3d3d3d;
}

.Calculator-landing .UP .Status .uperDiv .descript2 {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  text-align: right;
  color: #3d3d3d;
}

.Calculator-landing .UP .Status .uperDiv .toman {
  width: 17px;
}

.Calculator-landing .UP .Status .uperDiv .NiceButton {
  position: relative;
}

.Calculator-landing .UP .Status .uperDiv .NiceButton button,
.Calculator-landing .UP .Status .uperDiv .NiceButton a {
  background: inherit;
  border-radius: 24px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  border: 2px solid #3d3d3d;
  z-index: 1;
  text-decoration: none;
}

.Calculator-landing .UP .Status .uperDiv .NiceButton div {
  position: absolute;
  height: 64px;
  background: #028bff;
  border-radius: 24px;
  z-index: 0;
  top: 5px;
  left: 6px;
}

.Calculator-landing .UP .Status .custom {
  border-radius: 24px;
  border: none;
  outline: none;
  direction: rtl;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 44px;
  text-align: center;
  color: black;
}

.Calculator-landing .UP .Status .custom .math {
  cursor: pointer;
}

.Calculator-landing .UP .Status div {
  position: relative;
}

@media screen and (max-width: 1200px) {
  .Calculator-landing .UP {
    max-height: 525px;
  }
  .Calculator-landing .UP .big {
    font-size: 16px !important;
    font-weight: 500;
  }
}

.Calculator-landing .DOWN {
  position: relative;
  min-height: 180px;
}

@media screen and (max-width: 1600px) {
  .Calculator-landing .DOWN {
    padding-top: 100px;
  }
}

@media screen and (max-width: 768px) {
  .Calculator-landing .DOWN {
    padding-top: 7rem;
  }
}

.Calculator-landing .DOWN .RightCoin {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .Calculator-landing .DOWN .RightCoin {
    display: none;
  }
}

.Calculator-landing .DOWN .LeftCoin {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .Calculator-landing .DOWN .LeftCoin {
    display: none;
  }
}

.Calculator-landing .DOWN p {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  color: #3d3d3d;
}

@media screen and (max-width: 992px) {
  .Calculator-landing .DOWN p {
    padding: 0 50px !important;
  }
}

@media screen and (max-width: 768px) {
  .Calculator-landing .DOWN p {
    padding: 0 !important;
  }
}

@media screen and (max-width: 768px) {
  .Calculator-landing .DOWN .MobileCoinRight {
    display: flex !important;
    position: absolute;
    right: 0;
    top: 15px;
  }
}

@media screen and (max-width: 768px) {
  .Calculator-landing .DOWN .MobileCoinLeft {
    display: flex !important;
    position: absolute;
    left: 0;
    top: 35px;
  }
}

@media screen and (max-width: 768px) {
  .Calculator-landing {
    margin: 0 0 40px 0 !important;
  }
}

.footer {
  margin: 50px auto 0;
}

.footer ul {
  list-style-type: none;
}

.footer .above .firsRow {
  margin-top: -55px;
}

.footer .above .footer-contain {
  background: #f2f3f6;
  border-radius: 32px;
  padding: 30px;
}

.footer .copy-right {
  font-size: 14px;
}

.footer .below {
  position: relative;
}

.footer .below .trans {
  position: absolute;
  width: 98%;
  height: 100%;
  top: 0;
  /*background-image: url(/images/transparent.webp);*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

@media screen and (max-width: 568px) {
  .footer .below .trans {
    width: 96%;
  }
}

.footer .below .trans.trans-style {
  display: none;
}

.footer .links {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

@media screen and (max-width: 375px) {
  .footer .links:first-child {
    margin-left: 10px !important;
  }
}

.footer .links a {
  margin-bottom: 15px;
  font-size: 1.02rem;
  line-height: 30px;
  text-align: right;
  color: #30357c;
  font-weight: 500;
  text-decoration: none;
}

@media screen and (max-width: 1366px) {
  .footer .links a {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .footer .links a {
    font-size: 0.97rem;
  }
}

@media screen and (max-width: 992px) {
  .footer .links a {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 1366px) {
  .footer .links a {
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 375px) {
  .footer .links a {
    font-size: 0.8rem;
  }
}

.footer .links a:last-child {
  margin-bottom: 0;
}

.footer .cont-inf {
  display: flex;
  flex-direction: column;
}

.footer .cont-inf span {
  margin-bottom: 15px;
}

.footer .cont-inf .pNum {
  direction: ltr;
}

.footer .cont-inf .pNum a {
  color: #002c51;
}

.footer .endLine svg {
  background: #ffffff;
  box-shadow: 10px 9px 50px 5px rgba(0, 86, 159, 0.07);
  border-radius: 50%;
  margin-top: -27px;
  cursor: pointer;
  transition: all 0.4s linear;
}

.footer .endLine svg:hover {
  transform: scale(1.2);
  box-shadow: 10px 9px 50px 1px rgba(0, 86, 159, 0.1);
}

@media screen and (max-width: 992px) {
  .footer .links {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer .cont-inf {
    padding-top: 30px;
    margin-top: 20px;
    border-top: 1px solid #bdbdbd;
    justify-content: center;
    text-align: center;
  }
}

.footer .social {
  display: flex;
  align-items: center;
}

.footer .social a {
  font-size: 15px;
  color: #001c37;
  margin-left: 41px;
  transition: all 100ms;
  border-radius: 50%;
  display: flex;
  align-items: center;
  padding: 11px;
  background-color: white;
  box-shadow: 3px 9px 50px 1px rgba(0, 86, 159, 0.07);
}

.footer .social a:hover {
  transform: scale(1.08);
}

.footer .social a svg {
  width: 30px;
}

.footer .address div {
  align-items: center;
  display: flex;
  font-size: 1.02rem;
  font-weight: 500;
  list-style-type: none;
}

.footer .address a {
  color: black;
  text-decoration: none;
}

.footer .copy-right {
  font-size: 14px;
  color: black;
}

.footer .long-description {
  font-size: 13px;
  color: #30357c;
  line-height: 23px;
  text-align: justify;
  height: fit-content;
  overflow: hidden;
  transition: all 0.4s linear;
}

.footer .long-description a {
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .footer .long-description {
    font-size: 0.7rem;
    line-height: 19px;
  }
}

.footer .long-description.footerstyle {
  height: auto;
  overflow: auto;
}

.header .NiceButton {
  position: relative;
}

.header .NiceButton button,
.NiceButton a {
  background: inherit;
  border-radius: 24px;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  border: 2px solid #3d3d3d;
  z-index: 1;
}

.header .NiceButton div {
  position: absolute;
  height: 64px;
  background: #028bff;
  border-radius: 24px;
  z-index: 0;
  top: 5px;
  left: 6px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: white;
  border-radius: 0 0 24px 24px;
  box-shadow: -14px 9px 40px 1px rgba(48, 53, 124, 0.04);
}

.header .logo {
  min-width: 156px;
}

.items {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  text-align: right;
  color: #3d3d3d;
  position: relative;
  cursor: pointer;
}

.header .items:hover .dropdown {
  transform: rotate(180deg);
}

.header .items:hover .lists {
  display: flex !important;
  flex-direction: column;
  list-style-type: none;
  background-color: white;
  padding: 15px !important;
  border-radius: 12px;
  position: absolute;
  bottom: -120px;
  width: 199px;
  right: -23px;
}

.header .items:hover .lists li {
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
  color: #3d3d3d;
}

.header .items:hover .lists li:hover {
  background: rgba(224, 225, 231, 0.3);
}

.header .close {
  display: block;
  width: 48px;
  height: 48px;
}

.header .open {
  display: none;
}

.header .collapsed .close {
  display: none;
}

.header .collapsed .open {
  display: block;
}

.header .more {
  border: none;
  background: unset;
}

.ctaBanner {
  background-image: url("images/landings/ctaBanner/bg.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top;
}

.ctaBanner .main .title {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 44px;
  text-align: right;
  color: #3d3d3d;
}

.ctaBanner .main .des {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  text-align: justify;
  max-width: 524px;
}

.ctaBanner .main .buttons .question {
  border: 2px solid #3d3d3d;
  border-radius: 24px;
}

.ctaBanner .rightImage {
  max-height: 100%;
  max-width: 100%;
}

.ctaBanner .main .NiceButton {
  position: relative;
}

.ctaBanner .main .NiceButton button,
.ctaBanner .main .NiceButton a {
  background: inherit;
  border-radius: 24px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  border: 2px solid #3d3d3d;
  z-index: 1;
  text-decoration: none;
}

.ctaBanner .main .NiceButton div {
  position: absolute;
  height: 64px;
  background: #028bff;
  border-radius: 24px;
  z-index: 0;
  top: 5px;
  left: 6px;
}

.LandingMarket .HeroSection {
  background: linear-gradient(104.77deg, #466db2 36.6%, #7abcd6 89.57%);
  box-shadow: 0px 12px 0px #edf7ff;
}

.LandingMarket .HeroSection .Left .t2 {
  color: white;
  font-size: 28px;
  text-align: justify;
}

.LandingMarket .HeroSection .Left .t1 {
  color: white;
  font-weight: 300;
}

.LandingMarket .HeroSection .Left .des {
  color: white;
  font-weight: 300;
}

.LandingMarket .HeroSection .NiceButton {
  background: inherit;
  border-radius: 24px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  border: 2px solid #3d3d3d;
  z-index: 1;
  text-decoration: none;
}

.HomePage .Features .titr2 {
  background-size: contain;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .HomePage .Features .titr2 {
    padding: 20px 0 !important;
  }
}

.titr2 {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 52px;
  text-align: center;
  color: #00569f;
  background-image: url(images/HomePage/titr2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding: 20px 0 !important;
}

.LandingMarket .Property .des {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 33px;
  text-align: right;
  color: #3d3d3d;
}

.Landing_shops .banner .NiceButton {
  position: relative;
}

.Landing_shops .banner .NiceButton button,
.Landing_shops .banner .NiceButton a {
  background: inherit;
  border-radius: 24px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  border: 2px solid #3d3d3d;
  z-index: 1;
  text-decoration: none;
}

.Landing_shops .banner .NiceButton div {
  position: absolute;
  height: 64px;
  background: #028bff;
  border-radius: 24px;
  z-index: 0;
  top: 5px;
  left: 6px;
}

@media screen and (max-width: 1200px) {
  .ctaBanner {
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-size: cover;
  }
  .ctaBanner .main {
    margin-top: 30px;
  }
  .ctaBanner .main .buttons {
    margin-bottom: 40px;
  }
  .LandingMarket .HeroSection .Right {
    height: fit-content;
  }
}

@media screen and (max-width: 768px) {
  .header .logo {
    min-width: 100px;
  }
  .header .NiceButton button,
  .header .NiceButton a {
    background: inherit;
    border-radius: 16px;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #ffffff;
    border: 2px solid #3d3d3d;
    z-index: 1;
    width: 48px;
    height: 48px;
  }
  .header .NiceButton div {
    height: 48px;
    left: 6px;
    width: 48px;
    border-radius: 16px;
  }
  .ctaBanner {
    padding: 30px;
  }
  .LandingMarket .HeroSection .Right {
    width: 100%;
  }
  .LandingMarket .HeroSection .Right .Hand {
    display: block;
    width: 100%;
  }
  .LandingMarket .HeroSection .Left {
    margin: 0 !important;
    padding: 0 30px !important;
  }
  .LandingMarket .HeroSection .Left .t2 {
    font-size: 30px;
  }
  .LandingMarket .HeroSection .Left .des {
    padding: 0 !important;
  }
  .LandingMarket .HeroSection .Left .des::before {
    display: none;
  }
}

.triangle {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #3d3d3d;
  margin-right: 8px;
}

a.homelink {
  text-decoration: none;
  color: unset;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rtl {
  direction: rtl;
}

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

.faq-q {
  line-height: 2;
  font-size: 22px;
}

.faq-a {
  color: #484848;
  line-height: 1.75;
}

.Faq_landing {
  direction: rtl;
  background-color: #fafcfe;
}

.Faq_landing .banner {
  background: rgba(0, 86, 159, 0.160784);
  position: relative;
  min-height: 270px;
}

.Faq_landing .banner .title {
  color: #00569f;
  text-align: center;
  font-family: "Pelak";
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
}

.Faq_landing .banner:after {
  content: "";
  width: 145px;
  height: 270px;
  background: url(images/after.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}

.Faq_landing .banner:before {
  content: "";
  width: 145px;
  height: 270px;
  background: url(images/before.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.Faq_landing .main {
  margin-top: -100px;
  z-index: 1;
}

.Faq_landing .main .faqButtons {
  flex-shrink: 1;
  justify-content: space-around;
}

.Faq_landing .main .faqButtons .faq-button {
  flex: 1;
  padding: 25px;
  margin: 10px;
  max-width: 300px;
  min-width: 270px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: 1px solid #f2f3f6;
  background: #fff;
}

.Faq_landing .main .faqButtons .faq-button .t1 {
  color: #3d3d3d;
  text-align: right;
  font-family: "Pelak";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.Faq_landing .main .faqButtons .faq-button .t2 {
  color: #8b8b8b;
  text-align: right;
  font-family: "Pelak";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.Faq_landing .main .faqButtons .faq-button .t3 {
  color: #3d3d3d;
  text-align: right;
  font-family: "Pelak";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
}

.Faq_landing .main .faqButtons .active {
  background-color: #16d8a4;
  box-shadow: -14px 9px 24px 1px rgba(48, 53, 124, 0.12);
}

.Faq_landing .main .faqButtons .active p {
  color: white !important;
}

.Faq_landing .main .divider {
  background: #e4e4e4;
  height: 1px;
}

.Faq_landing .main .category {
  min-width: 100%;
}

.Faq_landing .main .collapsing {
  display: flex;
  justify-content: center;
  width: 100% !important;
  transition: height 0.35s ease-in;
}

.Faq_landing .main .show {
  display: flex;
  justify-content: center;
}

.Faq_landing .main .questions {
  max-width: 911px;
}

.Faq_landing .main .questions .head .t1 {
  color: #3d3d3d;
  text-align: right;
  font-family: "Pelak";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.Faq_landing .main .questions .head .t2 {
  color: #8b8b8b;
  text-align: right;
  font-family: "Pelak";
  font-size: 13px;
  font-style: normal;
  font-weight: 4 0;
  line-height: 24px;
}

.Faq_landing .main .questions .question {
  border-radius: 12px;
  border: 1px solid #f2f3f6;
  background: #fff;
}

.Faq_landing .main .questions .question button {
  background-color: transparent;
  border: none;
}

.Faq_landing .main .questions .question .title {
  color: #3d3d3d;
  text-align: right;
  font-family: "Pelak";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

.Faq_landing .main .questions .question .answer {
  color: #8b8b8b;
  text-align: justify;
  font-family: "Pelak";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.Faq_landing .main .questions .question .arrow {
  min-height: 40px;
  min-width: 40px;
  transform: rotate(180deg);
  filter: brightness(0) saturate(100%) invert(50%) sepia(93%) saturate(582%)
    hue-rotate(320deg) brightness(101%) contrast(101%);
}

.Faq_landing .main .questions .question .collapsing {
  transition: height 0.1s ease-in;
}

.Faq_landing .main .questions .question .collapsed .title {
  color: #8b8b8b;
}

.Faq_landing .main .questions .question .collapsed .arrow {
  transform: none;
  filter: none;
}

.Estefta_landing {
  direction: rtl;
  background-color: #fff;
}

.Estefta_landing .main {
  background-color: #fff;
}

.Estefta_landing .main .titr {
  position: relative;
}

.Estefta_landing .main .titr .t1 {
  position: absolute;
  right: 20%;
  top: 50px;
  color: #30357c;
  text-align: right;
  font-family: "Pelak";
  font-size: 46px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media screen and (max-width: 1000px) {
  .Estefta_landing .main .titr .t1 {
    position: relative;
    top: unset;
    right: unset;
    text-align: center;
    font-size: 36px;
  }
}

.Estefta_landing .main .detail .headericon {
  width: -moz-fit-content;
  width: fit-content;
}

.Estefta_landing .main .detail .question {
  border-radius: 40px;
  border: 1px solid #dfe1f3;
  background: #fff;
  box-shadow: -8px 32px 40px 1px rgba(48, 53, 124, 0.08);
  max-width: 600px;
}

.Estefta_landing .main .detail .question .t1 {
  color: #3d3d3d;
  font-family: "Pelak";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.Estefta_landing .main .detail .question .t2 {
  color: #30357c;
  text-align: right;
  font-family: "Pelak";
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
}

.Estefta_landing .main .detail .question .t3 {
  color: #30357c;
  text-align: right;
  font-family: "Pelak";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.Estefta_landing .main .detail .answer {
  max-width: 600px;
}

.Estefta_landing .main .detail .answer .t1 {
  color: #3d3d3d;
  text-align: right;
  font-family: "Pelak";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.Estefta_landing .main .detail .answer .t2 {
  color: #30357c;
  text-align: right;
  font-family: "Pelak";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
}
