@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --background-red-color: #0057b7;
  --design-red-color: #0071ee;
}

body {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  position: relative;

  overflow-y: auto;
  overflow-x: hidden;

  width: 100%;

  background: #fff;

  margin: 0;
  padding: 0;

  font-family: "Vazirmatn", sans-serif;
}

.red-base {
  display: flex;
  position: relative;

  min-height: 100vh;
  min-width: 100vw;

  background-color: var(--background-red-color);

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
}

.red-base .main-base {
  position: relative;

  width: 97.5vw;
  min-height: 80%;

  margin-top: 0.5vh;
  margin-bottom: 0.5vh;

  background-color: #fff;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: space-between;

  border-radius: 8px;
}

.red-base .main-base .large-head {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;

  width: 98.5vw;
  min-height: 12vh;
  height: fit-content;

  border-bottom: 2px solid var(--background-red-color);
}

.red-base .main-base .large-head .right-bar {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-around;
  align-items: center;

  width: 80vw;
  height: 100%;
}

.red-base .main-base .large-head .right-bar .search-logo {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;

  margin-bottom: 1vh;

  width: 100%;
}

.red-base .main-base .large-head .right-bar .category-info {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;

  width: 100%;
}

.red-base .main-base .large-head .right-bar .search-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
}

.red-base .main-base .large-head .right-bar .search-logo a img {
  width: 15vh;
}

.red-base .main-base .large-head .right-bar .search-logo .search-base {
  position: relative;

  margin-right: 5vh;
}

.red-base .main-base .large-head .right-bar .search-logo .search-base button {
  border: none;
  background: none;

  position: absolute;

  top: 0.6vh;
  right: 1.3vh;
}

.red-base
  .main-base
  .large-head
  .right-bar
  .search-logo
  .search-base
  button:hover {
  cursor: pointer;
}

.red-base .main-base .large-head .right-bar .search-logo .search-base input {
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 8px;

  font-family: "Vazirmatn", sans-serif;
  font-size: 1.7vh;
  color: #333333;

  padding: 10px;
  padding-right: 6vh;

  direction: rtl;

  height: auto;
  width: 40vw;
}

.red-base .main-base .large-head .right-bar .category-info button {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  border: none;
  background: none;
}

.red-base .main-base .large-head .right-bar .category-info button span {
  font-family: "Vazirmatn", sans-serif;
  font-weight: 500;
  font-size: 1.6vh;
  color: #000000;

  margin-right: 0.5vh;
}

.red-base .main-base .large-head .right-bar .category-info button:hover {
  cursor: pointer;
}

.red-base .main-base .large-head .right-bar .category-info .address,
.red-base .main-base .large-head .right-bar .category-info .announce {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  margin-right: 3vh;
  padding-right: 1vh;
  border-right: #797978 2px solid;

  height: fit-content;
}
.red-base .main-base .large-head .right-bar .category-info .address svg,
.red-base .main-base .large-head .right-bar .category-info .announce svg {
  margin-left: 1vh;
}

.red-base .main-base .large-head .right-bar .category-info .address .icon,
.red-base .main-base .large-head .right-bar .category-info .announce .icon {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.red-base .main-base .large-head .right-bar .category-info .address span,
.red-base .main-base .large-head .right-bar .category-info .announce span {
  color: #6d6d6d;
  font-feature-settings: "ss01";

  direction: rtl;
}

.red-base .main-base .large-head .right-bar .category-info .announce span {
  font-size: 1.5vh;
}

.red-base .main-base .large-head .right-bar .category-info .address .texts {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.red-base .main-base .large-head .right-bar .category-info .address span {
  font-size: 1.3vh;
}

.red-base .main-base .large-head .left-bar {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;

  width: 17vw;
  height: 100%;
}

.red-base .main-base .large-head .left-bar .login-btn {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.red-base .main-base .large-head .left-bar .login-btn a {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  color: #000;

  font-size: 1.5vh;
  font-weight: 500;

  text-decoration: none;

  border: 1px solid #c3c3c3;
  border-radius: 8px;

  padding: 1vh;
}

.red-base .main-base .large-head .left-bar .login-btn a span {
  padding-right: 0.5vh;
}

.red-base .main-base .large-head .left-bar .cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;

  width: 25%;
  border-right: #797978 2px solid;
}

.red-base .main-base .large-head .left-bar .cart-btn a {
  position: relative;

  text-decoration: none;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.red-base .main-base .large-head .left-bar .cart-btn a span {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  text-align: center;

  font-family: "Vazirmatn", sans-serif;
  font-size: 1.2vh;
  color: #ffffff;
  font-weight: 300;
  font-feature-settings: "ss01";

  background-color: var(--background-red-color);

  border-radius: 8px;

  min-height: 1.5vh;

  padding: 0.3vh;

  max-height: 1.5vh;

  bottom: -1.3vh;
  right: -0.5vh;

  position: absolute;
}

.main-body {
  width: 97.5vw;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
}
.top-slider {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  margin-top: 0.5vh;

  background-color: rgba(255, 255, 255, 0);

  overflow: hidden;

  width: 98.5vw;
  height: 20vw;
}

.top-slider .slider-container {
  display: flex;
  position: relative;
  overflow: hidden;

  width: 98.5vw;
  height: 20vw;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 20vw;

  background: #eee;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: scale(0.95);
  opacity: 0.8;

  overflow: hidden;
}

.slide-active {
  transform: scale(1);
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1);
}

.prev,
.next {
  color: #fcfcfc;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  width: 3vh;
  height: 3vh;

  display: flex;
  justify-content: center;
  align-items: center;

  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:after,
.next:after {
  font-size: 1vh;
  color: #fcfcfc;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.pagination span {
  display: inline-block;
  width: 16px;
  height: 0.75vh;
  background-color: #ddd;
  border-radius: 9999px;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination .active {
  background-color: #fff;
  opacity: 1;
}

.vehicle-brands {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  margin-top: 2vh;
  margin-bottom: 2vh;

  width: 90.5vw;
  min-height: 20vh;

  border-top: 1px solid var(--background-red-color);
  border-bottom: 1px solid var(--background-red-color);

  border-radius: 16px;
}

.vehicle-brands .text {
  width: 10%;

  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: column;

  font-size: 2.5vh;
  font-weight: 700;
}

.vehicle-brands .logos {
  width: 90%;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  height: 100%;
}

.vehicle-brands .logos a {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;

  text-decoration: none;
  color: #0057b7;
  font-weight: 700;
  font-size: 1.8vh;

  border-radius: 16px;
  border: 1px solid var(--design-red-color);
  transition: all 0.5s;

  height: 10vh;

  margin: 1vh;
  padding: 1vh;
}

.vehicle-brands .logos img {
  width: 7vh;
}

.vehicle-brands .logos a:hover {
  transition: all 0.5s;
  box-shadow: 0 0 8px 1px #0071ee;
}

.red-base .mobile-bar {
  display: none;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  border-top: 2px solid var(--background-red-color);

  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;

  background-color: #fff;
}

.red-base .mobile-bar a,
.red-base .mobile-bar button {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  font-family: "Vazirmatn", sans-serif;

  background: #fff;
  border: none;

  color: #81858b;
  font-weight: 700;
  font-size: 1.3vh;

  text-align: center;
  text-decoration: none;

  width: 100%;
  height: 100%;
}

.mobile-bar .right-bar {
  border-top-right-radius: 8px;

  background-color: green;
}

.mobile-bar .cart-btn {
  position: relative;

  text-decoration: none;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.mobile-bar .cart-btn span {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  text-align: center;

  font-family: "Vazirmatn", sans-serif;
  font-size: 1.2vh;
  color: #ffffff;
  font-weight: 300;
  font-feature-settings: "ss01";

  background-color: var(--background-red-color);

  border-radius: 8px;

  min-height: 1.5vh;

  padding: 0.3vh;

  max-height: 1.5vh;

  bottom: -0.3vh;
  right: -1vh;

  position: absolute;
}

.mobile-bar .active .cart-btn span {
  background-color: #000;
}

.red-base .mobile-bar .active {
  background-color: var(--background-red-color);

  color: #fff;
}

.red-base .mobile-bar .active path {
  fill: #fff;
}

.red-base .main-base .best-sales {
  position: relative;
  overflow: hidden;

  margin-top: 2vh;
  margin-bottom: 2vh;

  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row-reverse;

  width: 90.5vw;

  margin-top: 1vh;
  margin-bottom: 2vh;
}

.red-base .main-base .best-sales .sales {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  border-radius: 16px;

  background: var(--background-red-color);

  width: 90.5vw;
  height: 40vh;

  padding-top: 1vh;
  padding-bottom: 1vh;
}

.red-base .main-base .best-sales .sales .items {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;

  overflow: hidden;
  scroll-behavior: smooth;

  padding: 1vh;

  min-width: 90.5vw;
  height: 36vh;

  width: calc(100% - 80px);

  overflow-x: auto;
  scroll-behavior: smooth;
}

.items::-webkit-scrollbar {
  position: absolute;
  top: 10px;
  width: 8px;
  height: 8px;
}

.items::-webkit-scrollbar-track {
  background: #fff;
  box-shadow: inset 0 0 10px 10px #fff;
  border-radius: 10px;
}

.items::-webkit-scrollbar-thumb {
  background-color: #54a6ff;
  border-radius: 10px;
  border: 2px solid var(--background-red-color);
}

.red-base .main-base .best-sales .sales .items .banner {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  margin-right: 1vh;

  background-color: var(--background-red-color);
  height: 100%;
  min-width: 15vh;
}

.red-base .main-base .best-sales .sales .button-prev,
.red-base .main-base .best-sales .sales .button-next {
  position: absolute;
  z-index: 10;

  background-color: #eeeeee;
  border: none;
  color: #575757;
  font-size: 1.5vh;
  font-weight: 700;
  padding: 1vh;
  border-radius: 180px;

  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
}

.sales .button-prev {
  left: 0vh;
}
.sales .button-next {
  right: 0vh;
}

.red-base .main-base .best-sales .sales .items .banner .top-img {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: column;

  height: 8vh;
}

.red-base .main-base .best-sales .sales .items .banner .top-img img {
  width: 9vh;
}

.red-base .main-base .best-sales .sales .items .banner .show-btn {
  direction: rtl;

  margin-top: 0.5vh;

  display: flex;
}

.red-base .main-base .best-sales .sales .items .banner .show-btn a {
  text-decoration: none;

  font-size: 1.3vh;

  color: #fff;
}
.red-base .main-base .best-sales .sales .items .item {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;

  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  text-decoration: none;
  color: #000;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  margin-right: 0.5vh;
  margin-left: 0.5vh;

  height: 100%;
  width: 20vh;
}

.red-base .main-base .best-sales .sales .items .item:hover {
  cursor: pointer;
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.red-base .main-base .best-sales .sales .items .item .item-thumbnail img {
  height: 12vh;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.red-base .main-base .best-sales .sales .items .item .item-name {
  width: 17vh;
  height: 4.5vh;

  text-align: center;

  display: flex;
}

.red-base .main-base .best-sales .sales .items .item .item-name span {
  font-size: 1.5vh;

  width: 17vh;
  height: 4.5vh;

  color: #62666d;
  text-align: center;

  display: inline-block;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.red-base .main-base .best-sales .sales .items .item .item-price {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-around;
  align-items: center;

  margin-top: 0.6vh;

  width: 17vh;
  height: 4.5vh;

  font-feature-settings: "ss01";
}

.red-base .main-base .best-sales .sales .items .item .item-price .now-price {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.red-base
  .main-base
  .best-sales
  .sales
  .items
  .item
  .item-price
  .now-price
  img {
  height: 2vh;
}

.red-base
  .main-base
  .best-sales
  .sales
  .items
  .item
  .item-price
  .now-price
  span {
  font-size: 1.6vh;
  margin-left: 0.5vh;
  font-weight: 700;
}

.red-base .main-base .best-sales .sales .items .item .item-price .sale-count {
  margin-right: 0.5vh;

  padding-left: 4px;
  padding-right: 4px;

  background: var(--background-red-color);

  border-radius: 16px;

  color: #fff;
  font-weight: 700;
  text-align: center;
}

.red-base .main-base .best-sales .sales .items .item .item-off {
  position: relative;

  width: 17vh;
  height: 4.5vh;
}

.red-base .main-base .best-sales .sales .items .item .item-off span {
  font-size: 1.2vh;
  font-weight: 400;
  text-decoration-line: line-through;
  color: #c0c2c5;

  position: absolute;
  top: -0.6vh;
  left: 3vh;
}

.red-base .main-base .adv-banner,
.red-base .main-base .adv-banner a {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  margin-top: 2vh;
  margin-bottom: 2vh;

  height: 7vh;
  width: 93.5vw;

  border-radius: 50px;

  overflow: hidden;
}

.red-base .main-base .adv-banner img {
  display: flex;
  width: 98.5vw;
  object-fit: cover;
  object-position: center;
  outline: none;
  box-shadow: none;
  overflow: hidden;
}

.red-base .main-base .request-part {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  border: 2px solid #0057b7;
  border-radius: 16px;

  margin-top: 2vh;
  margin-bottom: 2vh;

  width: 93.5vw;
}

.red-base .main-base .request-part .text-part {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  width: 45%;

  direction: rtl;
}

.red-base .main-base .request-part .button-part {
  position: relative;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;

  width: 45%;
}

.red-base .main-base .request-part .text-part .title {
  font-weight: 700;
  font-size: 3vh;

  margin-bottom: 2vh;
}

.red-base .main-base .request-part .text-part .text {
  color: #62666d;
  font-size: 1.5vh;
  font-weight: 500;
}

.red-base .main-base .request-part .button-part img {
  width: 35vh;
}

.red-base .main-base .request-part .button-part a {
  display: none;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;

  background-color: var(--design-red-color);
  padding: 1.5vh;
  margin: 1vh;
  color: #fff;
  font-weight: 700;
  text-decoration: none;

  border-radius: 16px;
  box-shadow: 0 0 20px var(--design-red-color);

  transition: all 0.5s;

  position: absolute;
  bottom: 15vh;
}

.red-base .main-base .request-part .button-part a:hover {
  transition: all 0.5s;
  background-color: #000;
  box-shadow: 0 0 20px #000;
}

.red-base .main-base .request-part .button-part a svg {
  margin-right: 0.5vh;
}

.red-base .main-base .request-part .button-part a path {
  fill: #fff;
}

.red-base .main-base footer {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;

  overflow: hidden;

  border-top: 2px solid var(--background-red-color);

  max-width: 95.5vw;
}

.red-base .main-base .popular-parts {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  margin-top: 2vh;
  margin-bottom: 2vh;

  border-radius: 16px;
  background: var(--background-red-color);
  width: 90.5vw;
}

.red-base .main-base .popular-parts .title {
  margin-top: 2vh;
  margin-bottom: 2vh;
  font-size: 2.5vh;
  font-weight: 700;
  color: #fff;
}

.red-base .main-base .popular-parts .categorys-of-part {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  margin-bottom: 2vh;

  width: 95%;
}

.red-base .main-base .popular-parts .categorys-of-part .row {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  background: #fff;
  font-size: 1.5vh;
  font-weight: 500;
  text-decoration: none;
  color: #000;
  border-radius: 8px;
  transition: all 0.5s;

  margin: 1vh;
  padding: 1vh;
}

.red-base .main-base .popular-parts .categorys-of-part .row:hover {
  cursor: pointer;
  transition: all 0.5s;
  box-shadow: 0 0 20px #fff;
}

.red-base .main-base .popular-parts .categorys-of-part .row img {
  width: 13vh;
}

.red-base .main-base footer .symbols {
  width: 90vw;

  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-around;
  align-items: center;
}

.red-base .main-base footer .symbols .symbol {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  margin-top: 1vh;
}

.red-base .main-base footer .symbols .symbol img {
  width: 6vh;
}

.red-base .main-base footer .symbols .symbol span {
  text-align: center;
  font-size: 1.3vh;
}

.red-base .main-base footer .information {
  width: 95vw;

  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.red-base .main-base footer .information .location {
  width: 20vw;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: space-evenly;
}

.red-base .main-base footer .information .location .logo img {
  width: 13vh;
}

.red-base .main-base footer .information .location .address {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  direction: rtl;

  font-feature-settings: "ss01";
  text-align: center;
  font-size: 1.3vh;
}

.red-base .main-base footer .information .buttons {
  width: 55vw;
  height: 15vh;

  margin-left: 3vh;
  margin-right: 3vh;

  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.red-base .main-base footer .information .buttons .offer,
.red-base .main-base footer .information .buttons .terms,
.red-base .main-base footer .information .buttons .socialclub {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  width: 100%;
}
.red-base .main-base footer .information .buttons .offer *,
.red-base .main-base footer .information .buttons .terms *,
.red-base .main-base footer .information .buttons .socialclub * {
  text-align: center;
  width: 100%;
}

.red-base .main-base footer .information .buttons .offer .head,
.red-base .main-base footer .information .buttons .terms .head,
.red-base .main-base footer .information .buttons .socialclub .head {
  font-weight: 700;
  margin-bottom: 1vh;
}

.red-base .main-base footer .information .buttons .offer .body,
.red-base .main-base footer .information .buttons .terms .body,
.red-base .main-base footer .information .buttons .socialclub .body {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: flex-end;
}

.red-base .main-base footer .information .buttons .offer .body a,
.red-base .main-base footer .information .buttons .terms .body a,
.red-base .main-base footer .information .buttons .socialclub .body a {
  font-size: 1.4vh;
  text-decoration: none;
  color: #81858b;
}

.red-base .main-base footer .information .badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;

  width: 20vw;
}

.red-base .main-base footer .information .badges .badge {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  border: 1px solid #575757;
  border-radius: 18px;

  padding: 0.5vh;
  margin: 0.5vh;
}

.red-base .main-base footer .information .badges .badge img {
  width: 7vh;
}

.red-base .main-base footer .copyright {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  padding-top: 1vh;
  padding-left: 1vh;
  padding-right: 1vh;

  border-top-left-radius: 18px;
  border-top-right-radius: 18px;

  direction: rtl;

  text-align: center;
  font-size: 1.5vh;
  font-weight: 700;
  color: #fff;

  background-color: var(--background-red-color);
}

.red-base .main-base footer .copyright .design-text {
  font-size: 1vh;
}

.red-base .main-base footer .copyright .design-text a {
  color: #baf5ff;
  text-decoration: none;
  font-weight: 300;
}

.red-base .category {
  display: none;

  position: absolute;
  top: 0.5vh;

  flex-direction: column;
  align-content: flex-end;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: nowrap;

  position: absolute;

  border-radius: 8px;

  width: 98.5vw;
  height: 99.6%;

  background: #00000045;
}

.red-base .category .base {
  width: 80vw;
  height: 60vh;

  border-radius: 16px;

  margin-right: 0.5vh;

  background: #fff;
  display: flex;
  flex-direction: row-reverse;
}

.red-base .category .head {
  margin-top: 5vh;
}

.red-base .category .head button {
  background: transparent;
  border: transparent;
}

.red-base .category .head button:hover {
  cursor: pointer;
}

.red-base .category .head button:hover rect {
  fill: #000;

  transition: all 0.5s;
}

.red-base .category .head button rect {
  fill: #ff0000;

  transition: all 0.5s;
}

.red-base .category .base .main-select {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;

  overflow-y: auto;
  overflow-x: hidden;

  width: 12vw;

  background: #f5f5f5;
}

.red-base .category .base .main-select button {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  font-family: "Vazirmatn", sans-serif;
  font-size: 1.4vh;
  font-weight: 700;
  color: #3f4064;

  background: transparent;
  border: transparent;

  width: 100%;
  height: 6vh;

  transition: all 0.5s;
}

.red-base .category .base .main-select .active {
  cursor: pointer;
  transition: all 0.5s;
  color: var(--design-red-color);
  background: #fff;
}

.red-base .category .base .main-select button svg {
  margin-left: 0.5vh;
}

.red-base .category .base .main-select button:hover {
  cursor: pointer;
  transition: all 0.5s;
  color: var(--design-red-color);
  background: #fff;
}

.red-base .category .base .main-select button:hover path,
.red-base .category .base .main-select button:hover polygon {
  fill: var(--design-red-color);
}

.red-base .category .base .options {
  background: #fff;

  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;

  width: 68vw;

  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  align-content: flex-start;

  overflow-y: auto;
  overflow-x: hidden;
}

.red-base .category .base .options .row {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  margin: 1vh;
  padding: 1vh;
}

.red-base .category .base .options .row .head-of-category {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  border-right: 2px solid var(--design-red-color);
  transition: all 0.5s;
}

.red-base .category .base .options .row .head-of-category span {
  font-weight: 700;
  font-size: 1.5vh;

  margin-right: 1vh;
}

.red-base .category .base .options .row .head-of-category:hover {
  transition: all 0.5s;
  color: var(--design-red-color);
  cursor: pointer;
}

.red-base .category .base .options .row .head-of-category:hover path {
  transition: all 0.5s;
  fill: var(--design-red-color);
}

.red-base .category .base .options .row .body-of-category {
  margin-top: 1vh;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-end;
  justify-content: center;
  align-items: flex-end;

  font-size: 1.3vh;
}

.red-base .category .base .options .row .body-of-category .selection {
  color: #81858b;
  transition: all 0.5s;
  margin-top: 0.5vh;

  text-decoration: none;
}

.red-base .category .base .options .row .body-of-category .selection:hover {
  color: var(--design-red-color);
  transition: all 0.5s;
  cursor: pointer;
}

.btn-call {
  background-color: #ffc107;
  font-family: "Vazirmatn", sans-serif;
  font-weight: 700;
  font-size: 1.3vh;

  color: #353535;
  border: none;
  border-radius: 8px;

  padding: 10px 20px;

  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-call:hover {
  background-color: #e0a800;
  transform: scale(1.05);
}

.btn-unavailable {
  background-color: #dc3545;

  font-family: "Vazirmatn", sans-serif;
  font-weight: 700;
  font-size: 1.3vh;
  color: #fff;

  border: none;
  border-radius: 8px;
  padding: 1vh;

  cursor: not-allowed;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-unavailable:hover {
  background-color: #c82333;
  transform: scale(1.05);
}

@media only screen and (max-width: 1220px) {
  .red-base {
    min-height: 93vh;
    max-height: 93vh;
    overflow-y: auto;
  }
  .vehicle-brands .logos img {
    width: 8vh;
  }
  .vehicle-brands .logos a {
    min-height: 12vh;
  }
  .red-base .main-base {
    overflow-x: hidden;
    overflow-y: auto;

    margin-bottom: 8vh;

    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .red-base .mobile-bar {
    display: flex;
    width: 98.5vw;
    height: 7vh;
    position: absolute;
    bottom: 0;
  }
  .top-slider {
    width: 98.5vw;
    height: 50vw;
  }
  .top-slider .slider-container {
    width: 98.5vw;
    height: 50vw;
  }

  .top-slider .slide {
    width: 98.5vw;
    height: 50vw;
  }

  .top-slider .slide img {
    width: 98.5vw;
    height: 50vw;
    object-fit: cover;
    object-position: center;
  }
  .red-base .main-base .large-head .right-bar .search-logo {
    flex-direction: column;
  }
  .red-base .main-base .large-head .left-bar {
    display: none;
  }
  .red-base .main-base .large-head .right-bar {
    margin-top: 2vh;
    margin-bottom: 2vh;

    width: 100vw;
  }
  .red-base .main-base .large-head .right-bar .category-info {
    display: none;
  }
  .red-base .main-base .large-head .right-bar .search-logo .search-base {
    margin: unset;
    margin-top: 1vh;
  }
  .red-base .main-base .large-head .right-bar .search-logo .search-base input {
    width: 66vw;
  }
  .red-base .main-base footer {
    min-height: 56vh;
    margin-bottom: 6vh;
  }
  .red-base .main-base footer .copyright {
    padding: 0;
    border-radius: 18px;
    padding: 1vh;

    margin-top: 1vh;
    margin-bottom: 1vh;
  }
  .red-base .main-base footer .information {
    margin-top: 4vh;
    margin-bottom: 4vh;

    flex-direction: column;
  }
  .red-base .main-base footer .information .location,
  .red-base .main-base footer .information .buttons,
  .red-base .main-base footer .information .badges {
    width: 90vw;
  }
  .red-base .main-base footer .information .badges {
    justify-content: center;
  }
  .red-base .main-base .adv-banner img {
    height: 7vh;
  }
  .red-base .main-base .vehicle-brands,
  .red-base .main-base .request-part {
    flex-direction: column;
  }
  .red-base .main-base .request-part .text-part {
    margin-top: 3vh;
    width: 100%;
  }
  .red-base .main-base .request-part .button-part {
    margin-top: 3vh;
    width: 100%;
  }
  .vehicle-brands .text,
  .vehicle-brands .logos {
    margin-top: 2vh;
    width: 100%;
  }
  .red-base .category .base {
    width: 100vw;
    height: 95vh;
    margin-right: -0.5vh;

    border-radius: 0;
  }
  .red-base .category .base .main-select {
    width: 30vw;
  }
  .red-base .category {
    width: 100vw;
    top: -4.5vh;
    height: 105vh;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
