*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  direction: rtl;
  font-family: "Vazirmatn RD FD", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}

ul,
ol,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

a, p, span, h1, h2, h3, h4, h5, h6, li, ol, ul, input,
button,
select,
option,
textarea {
  font-family: "Vazirmatn RD FD", Vazirmatn, sans-serif;
}

input,
button,
select,
option,
textarea {
  direction: rtl;
  font-family: "Vazirmatn RD FD", sans-serif;
  outline: none;
  border: none;
  resize: vertical;
  text-align: center;
}

input,
textarea {
    min-height: 48px !important;
    border-radius: 8px !important;
    border: 1px solid #ededed !important;
    background-color: #ededed !important;
    text-align: center !important;
}

input:focus,
textarea:focus {
  background-color: #FFFFFF !important;
  color: #08a66c !important;
  border-color: #08a66c !important;
}

input:disabled,
textarea:disabled {
  background-color: #FFF2F2 !important;
  color: #C30000 !important;
  cursor: not-allowed !important;
}

input:focus {
  outline: none;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #c0c0c0 #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
  border-radius: 10px;
  border: 3px solid #ffffff;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 32px;
}

.section {
  margin-block: 64px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  direction: rtl;
  font-family: "Vazirmatn", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}

ul,
ol,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

input,
button,
select,
option,
textarea {
  direction: rtl;
  font-family: "Vazirmatn", sans-serif;
  outline: none;
  border: none;
  resize: vertical;
  text-align: center;
}

input:focus {
  outline: none;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #c0c0c0 #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
  border-radius: 10px;
  border: 3px solid #ffffff;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 32px;
}

.section {
  margin-block: 64px;
}

.header {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .nav {
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header .nav__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .nav__logo__image {
  width: 150px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .nav__toggle {
  display: none;
}
.header .nav__menu {
  display: flex;
  -moz-column-gap: 32px;
       column-gap: 32px;
  flex: 1;
  margin-right: 32px;
}
.header .nav__link {
  color: #404040;
}
.header .nav__link:hover {
  color: #08A66C;
}
.header .nav__btns {
  display: flex;
  -moz-column-gap: 32px;
       column-gap: 32px;
  justify-content: space-between;
  align-items: center;
}
.header .nav__btns__btn {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  flex-wrap: wrap;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
.header .nav__btns__btn:hover {
  box-shadow: 0 0 4px #08A66C;
}
.header .nav__btns__btn:nth-child(1) {
  background-color: #FFFFFF;
  border: 1px solid #08A66C;
  color: #08A66C;
}
.header .nav__btns__btn:nth-child(2) {
  background-color: #08A66C;
  color: #FFFFFF;
}
.header .nav__btns__btn:nth-child(3) {
  background-color: #08A66C;
  color: #FFFFFF;
}
.header .nav__sub-menu {
  max-width: 300px;
  width: 100%;
  min-height: 400px;
  background-color: #DBFDF1;
  border-radius: 16px;
  position: absolute;
  top: 120px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  row-gap: 32px;
  left: 8px;
}
.header .nav__sub-menu--disable {
  left: 100%;
  display: none;
}
.header .nav__sub-menu__link {
  color: #404040;
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.header .nav__sub-menu__link:hover {
  color: #08A66C;
}
.header .nav__sub-menu__close {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background-color: #DBFDF1;
  color: #404040;
  position: absolute;
  top: -25px;
  left: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  cursor: pointer;
}

.nav__sub-menu__item:nth-child(7) .nav__sub-menu__link {
  color: #C30000;
}

@media only screen and (max-width: 1024px) {
  .nav__toggle {
    display: flex !important;
    top: 32px;
    right: 32px;
    z-index: 12;
    font-size: 32px;
    cursor: pointer;
    color: #404040;
  }
  .nav__logo__image {
    width: 100px !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .nav__menu {
    width: 75%;
    height: 100%;
    position: fixed;
    top: 0;
    flex-direction: column;
    row-gap: 16px;
    background-color: #DBFDF1;
    margin: 0;
    right: 100%;
    align-items: center;
    justify-content: center;
    margin-inline: 0 !important;
    z-index: 11;
  }
  .nav__btns__btn--primary {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav__btns__btn--primary span {
    display: none;
  }
  .nav__btns__btn--secondary {
    display: none !important;
  }
  .nav__btns__btn--logged-in {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav__btns__btn--logged-in span {
    display: none;
  }
}
.about {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.about__company, .about__why-us, .about__goals, .about__online-shopping, .about__etemad {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.about__company__title, .about__why-us__title, .about__goals__title, .about__online-shopping__title, .about__etemad__title {
  color: #08A66C;
  font-size: 24px;
}
.about__company__description, .about__why-us__description, .about__goals__description, .about__online-shopping__description, .about__etemad__description {
  color: #606060;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}/*# sourceMappingURL=about.css.map */

* {
  scrollbar-width: thin;
  scrollbar-color: #c0c0c0 #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
  border-radius: 10px;
  border: 3px solid #ffffff;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 32px;
}

.section {
  margin-block: 64px;
}

.footer {
  width: 100%;
  position: relative;
  margin-block: 32px;
}
.footer .container {
  min-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
.footer__content {
  min-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer__right, .footer__left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 32px;
}
.footer__right {
  flex-basis: 100%;
}
.footer__logo {
  max-width: 200px;
  width: 100%;
  height: auto;
}
.footer__description {
  color: #606060;
}
.footer__etemad {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 32px;
  overflow: auto;
}
.footer__address, .footer__support {
  display: flex;
  -moz-column-gap: 32px;
       column-gap: 32px;
  align-items: center;
  justify-content: center;
}
.footer__address, .footer__support {
  flex-direction: column;
  row-gap: 16px;
  position: relative;
}
.footer__address::before, .footer__support::before {
  content: "";
  width: 50%;
  height: 1px;
  position: absolute;
  background-color: #CBCBCB;
  top: -16px;
}
.footer__address__title, .footer__support__title {
  color: #08A66C;
}
.footer__address__sub-title, .footer__support__sub-title {
  color: #202020;
}
.footer__address__description, .footer__support__description {
  color: #606060;
}
.footer__address__sub-escription, .footer__support__sub-description {
  color: #08A66C;
}
.footer__menu {
  display: flex;
  align-items: center;
}
.footer__item {
  display: flex;
  width: 50%;
  text-align: center;
}
.footer__item__pipe {
  border-left: 1px solid #CBCBCB;
}
.footer__link {
  width: 100%;
  color: #404040;
  font-size: 12px;
  position: relative;
}
.footer__link:hover {
  color: #08A66C;
}
.footer__social {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.footer__social__link {
  font-size: 32px;
  color: #606060;
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  color: #08A66C;
}
.footer__social__span {
  display: none;
}
.footer__bottom {
  text-align: center;
}
.footer__bottom__description {
  color: #606060;
}

@media only screen and (max-width: 1024px) {
  .footer__content {
    flex-direction: column;
  }
  .footer__right,
  .footer__left {
    width: 100%;
  }
  .footer__menu {
    flex-direction: row;
    row-gap: 16px;
  }
  .footer__support__title {
    text-align: center;
  }
  .footer__bottom {
    display: none;
  }
}