@font-face {
  font-family: "sansRegular";
  src: url("../assets/fonts/IRANSansX-Regular.woff"), url("../assets/fonts/IRANSansX.woff2");
}
@font-face {
  font-family: "sansLight";
  src: url("../assets/fonts/IRANSansX-Light.woff"), url("../assets/fonts/IRANSansX-Light.woff2");
}
@font-face {
  font-family: "sansBold";
  src: url("../assets/fonts/IRANSansX-Bold.woff"), url("../assets/fonts/IRANSansX-Bold.woff2");
}
@font-face {
  font-family: "sansBlack";
  src: url("../assets/fonts/IRANSansX-Black.woff"), url("../assets/fonts/IRANSansX-Black.woff2");
}
@font-face {
  font-family: "lalezar";
  src: url("../assets/fonts/Lalezar-Regular.woff");
}
body {
  font-family: "sansRegular";
}

*,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
div,
section,
button,
details,
summary {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 1rem;
  word-spacing: 3px;
  list-style: none;
  font-weight: 400;
}

button {
  outline: 0;
  border: 0;
  background-color: inherit;
  font-family: "sansRegular";
}

.categorybutton{
      background-color: #fff;
}


p {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all ease 0.2s;
}

a:hover {
  color: var(--secondary-color);
}

input,
textarea {
  outline: 0;
  border: 0;
  padding: 0;
  margin: 0;
}

.MobileOffcanvasOverlay {
  background-color: rgba(0, 0, 0, 0.6549019608);
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}
.MobileOffcanvasOverlay.show {
  opacity: 1;
  visibility: visible;
}

.MobileOffcanvas {
  background-color: #7ecaeb;
  position: fixed;
  right: -300px;
  top: 0;
  height: 100%;
  width: 300px;
  z-index: 80;
  transition: right 0.2s ease;
  opacity: 0;
  visibility: hidden;
}
.MobileOffcanvas.show {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.MobileOffcanvas .MobileOffcanvasClose {
  position: absolute;
  top: 30px;
  left: 20px;
  width: 35px;
  height: 35px;
  color: white;
  cursor: pointer;
}
.MobileOffcanvas ul {
  margin: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.MobileOffcanvas ul li {
  color: white;
}
.MobileOffcanvas ul li a {
  border-bottom: 3px solid transparent;
}
.MobileOffcanvas ul li.active a {
  border-color: white;
}

.MobileNavbar {
  width: 100%;
  background-color: #7ecaeb;
  color: white;
  position: sticky;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  z-index: 50;
}
.MobileNavbar button {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid white;
  cursor: pointer;
}
.MobileNavbar button svg {
  width: 35px;
  height: 35px;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}
header > .first {
  display: flex;
  align-items: center;
  gap: 60px;
}
header > .first img {
  width: 100px;
  height: 60px;
}
header > .first > ul {
  display: flex;
  align-items: center;
  gap: 60px;
}
header > .first > ul > li {
  font-weight: 400;
  font-size: 14px;
  position: relative;
}
header > .first > ul > li.active {
  color: #1d97d4;
}
header > .first > ul > li.active::after {
  content: "";
  position: absolute;
  bottom: -20px;
  width: 7px;
  height: 7px;
  background-color: #1d97d4;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}
header > .first > ul > li a {
  transition: all ease 0.2s;
}
header > .first > ul > li a:hover {
  color: #1d97d4;
}
header > .first > ul > li.dropdown {
  position: relative;
}
header > .first > ul > li.dropdown > a {
  display: flex;
  align-items: center;
  gap: 10px;
}
header > .first > ul > li.dropdown > a span {
  color: black;
  width: 20px;
  height: 20px;
}
header > .first > ul > li.dropdown > ul {
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  top: 100%;
  width: 140px;
  padding: 8px 14px;
  z-index: 40;
  gap: 17px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: white;
  border-radius: 8px;
}
header > .first > ul > li.dropdown > ul > li a {
  font-size: 14px;
}
header > .first > ul > li:hover > ul {
  display: flex;
}
header .second {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .second > div {
  width: 143px;
  display: flex;
  gap: 10px;
}
header .second > div img {
  width: 24px;
  height: 24px;
}
header .second > div input {
  border-bottom: 1px solid black;
  width: 100%;
  padding-bottom: 10px;
}
header .second a,
header .second button {
  background-color: #1d97d4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 11px;
  padding: 8px 12px;
  color: white;
  width: 145px;
  cursor: pointer;
  font-size: 14px;
  word-spacing: 0px;
}
header .second button {
  background: radial-gradient(114.11% 391.49% at 13.31% 18.18%, #1d97d4 0%, #115c82 100%);
  position: relative;
}
header .second button > ul {
  position: absolute;
  bottom: -100px;
  right: 0;
  background-color: #1d97d4;
  background: radial-gradient(114.11% 391.49% at 13.31% 18.18%, #1d97d4 0%, #115c82 100%);
  display: none;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 10px;
  width: 100%;
  padding: 1rem;
  border-radius: 11px;
}
header .second button > ul li {
  cursor: pointer;
  transition: all ease 0.3s;
}
header .second button > ul li:hover {
  color: black;
}

.Section1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 5rem;
}
.Section1 > .description div:nth-child(1) {
  border-bottom: 1px solid black;
  padding-bottom: 2rem;
  width: 100%;
  max-width: 435px;
}
.Section1 > .description div:nth-child(1) h4 {
  color: #3f6698;
  font-size: 70px;
  margin-bottom: 1rem;
  font-family: "lalezar";
}
.Section1 > .description div:nth-child(1) p {
  color: #3f6698;
  text-align: justify;
  font-size: 23px;
  font-weight: 400;
}
.Section1 > .description div:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 2rem;
}
.Section1 > .description div:nth-child(2) button {
  width: 100%;
  max-width: 210px;
  border-radius: 17px;
  height: 49px;
  padding: 8px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Section1 > .description div:nth-child(2) button:nth-child(1) {
  background-color: #7ecaeb;
  color: #292d32;
}
.Section1 > .description div:nth-child(2) button:nth-child(1) img {
  width: 22px;
  height: 22px;
  margin-left: 0.6rem;
}
.Section1 > .description div:nth-child(2) button:nth-child(2) {
  background-color: #292d32;
  color: white;
}
.Section1 > .description div:nth-child(2) button:nth-child(2) img {
  width: 18px;
  height: 18px;
  margin-left: 0.6rem;
}
.Section1 .bigImage {
  padding: 0 2rem;
}

.Section2 {
  margin: 0 auto;
  width: 100%;
  max-width: 1300px;
  margin-bottom: 5rem;
}
.Section2 > .brandsHeader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 206px;
  margin: 0 auto;
}
.Section2 > .brandsHeader h5 {
  color: #3f6698;
  border-bottom: 1px solid black;
  font-size: 35px;
  padding-bottom: 1rem;
  font-family: "lalezar";
}
.Section2 > .brandsHeader p {
  /*color: #000000;*/
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  margin-top: 0.8rem;
}
.Section2 > .brandsList {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
  margin: 0 auto;
  margin-top: 1rem;
}
.Section2 > .brandsList > .brandItem {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 126px;
  cursor: pointer;
}
.Section2 > .brandsList > .brandItem.active > div, .Section2 > .brandsList > .brandItem:hover > div {
  border-color: #292d32;
}
.Section2 > .brandsList > .brandItem.active img, .Section2 > .brandsList > .brandItem:hover img {
  box-shadow: 0px 5px 14.7px 0px rgba(0, 0, 0, 0.2509803922);
  scale: 0.87;
  filter: grayscale(0%);
}
.Section2 > .brandsList > .brandItem.active > p, .Section2 > .brandsList > .brandItem:hover > p {
  background-color: #000000;
  color: white;
  border-radius: 15px;
  padding: 10px 23px;
}
.Section2 > .brandsList > .brandItem > div {
  border: 1px solid transparent;
  border-radius: 50%;
  width: 124px;
  height: 126px;
}
.Section2 > .brandsList > .brandItem img {
  width: 100%;
  max-width: 124px;
  height: 124px;
  border-radius: 50%;
  transition: all ease 0.2s;
  filter: grayscale(100%);
}
.Section2 > .brandsList > .brandItem p {
  font-size: 15px;
  /*color: #000000;*/
  margin-top: 10px;
  transition: all ease 0.2s;
}

.Section3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.Section3 > .cardsHeader h5 {
  color: #3f6698;
  border-bottom: 1px solid black;
  font-size: 35px;
  padding-bottom: 1rem;
  font-family: "lalezar";
}
.Section3 > .cardsHeader > div {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12.8px;
}
.Section3 > .cardsHeader > div button {
  border-radius: 15px;
  font-size: 16px;
  /*color: #000000;*/
  cursor: pointer;
  transition: all ease-in-out 0.2s;
  padding: 10px 18px;
}
.Section3 > .cardsHeader > div button.active {
  background-color: #1d97d4;
  color: white;
}
.Section3 > .cardsHeader > div button:hover {
  color: white;
  background-color: #1d97d4;
}
.Section3 .tab-container {
  position: relative; /* For positioning the content absolutely */
  width: 100%; /* Full width */
  overflow: hidden; /* Hide overflow to prevent scrollbar flicker */
}
.Section3 .CardsList {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 45px;
  margin-top: 2rem;
  opacity: 0;
  transform: translateX(100%);
  position: absolute;
  transition: opacity 0.4s ease, transform 0.4s ease;
  width: 100%;
  top: 0;
  right: 0;
}
.Section3 .CardsList.show {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}
.Section3 .CardsList > .Card {
  width: 274px;
  height: 350px;
  border: 1px solid #000000;
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  background-image: url("../assets/imgAndIcon/card-img.svg");
  background-position: center top;
}
.Section3 .CardsList > .Card > img {
  height: 350px;
}
.Section3 .CardsList > .Card > .CardDescription {
  height: 137px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
  padding: 0.5rem;
}
.Section3 .CardsList > .Card > .CardDescription > div {
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.7rem;
  color: #000000;
}
.Section3 .CardsList > .Card > .CardDescription > div p {
  width: 127px;
  line-height: 24px;
}
.Section3 .CardsList > .Card > .CardDescription > div span {
  font-size: 25px;
}
.Section3 .CardsList > .Card > .CardDescription button {
  background-color: #1d97d4;
  width: 100%;
  height: 50px;
  color: white;
  border-radius: 17px;
  cursor: pointer;
}

footer {
  border-top: 1px solid #000;
  padding-top: 1.8rem;
  width: 100%;
  max-width: 1050px;
  margin: 5rem auto 2rem auto;
  gap: 117px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .AboutSec {
  flex: 1;
}
footer .AboutSec h6 {
  color: 15px;
  color: #1d97d4;
  border-bottom: 1px solid #1d97d4;
  padding-bottom: 0.5rem;
  text-align: end;
  margin-bottom: 1rem;
}
footer .AboutSec p {
  font-size: 14px;
  line-height: 29px;
  text-align: justify;
  /*color: #292d32;*/
}
footer .LogoSec {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
}
footer .LogoSec img {
  width: 256px;
  height: 154px;
}
footer .ContactSec {
  flex: 1;
}
footer .ContactSec h6 {
  color: 15px;
  color: #1d97d4;
  border-bottom: 1px solid #1d97d4;
  padding-bottom: 0.5rem;
  text-align: start;
  margin-bottom: 1rem;
}
footer .ContactSec ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .ContactSec ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  /*color: #292d32;*/
}/*# sourceMappingURL=app.css.map */

.CardsList2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 45px;
  margin-top: 2rem;
  opacity: 0;
  transform: translateX(100%);
  position: absolute;
  transition: opacity 0.5s ease, visibility 0s 0.5s;
  width: 100%;
  top: 0;
  right: 0;
}

.CardsList2.show {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}