@charset "UTF-8";
/* About Page */
@font-face {
  font-family: iranYekan;
  src: url(./assets/font/iranYekan/IRANYekanWeb-Medium.eot);
  src: url(./assets/font/iranYekan/IRANYekanWeb-Medium.ttf);
  src: url(./assets/font/iranYekan/IRANYekanWeb-Medium.woff2);
  src: url(./assets/font/iranYekan/iranyekanwebmedium.2d4f96e5.2d4f96e5.woff);
}
* {
  padding: 0;
  margin: 0;
}

body.aboutUs {
  font-family: "iranYekan";
  background-color: #f5f5f5;
}

.about-hero {
  background-color: #5e1e1e;
  color: rgb(248, 245, 245);
  text-align: center;
  padding: 80px 20px;
  width: 65%;
  margin: 0px auto;
  border-radius: 40px;
}

.about-hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 1.2em;
}

.about-content {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.about-section {
  margin-bottom: 50px;
}

.about-section h2 {
  color: #5e1e1e;
  margin-bottom: 15px;
  border-right: 5px solid #722323;
  padding-right: 10px;
}

.about-section p, .about-section li {
  line-height: 1.8;
  color: #333;
}

.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.member {
  background-color: #f8f8f8;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  width: 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.member:hover {
  transform: scale(1.05);
}

.member img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.contact a {
  color: #5e1e1e;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* موبایل */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2em;
  }
  .member {
    width: 100%;
  }
}/*# sourceMappingURL=aboutUs.css.map */