main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.head-title {
  font-family: "Diba";
  color: #333;
  font-size: 1.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.head-title img {
  width: 50px;
}

.banner {
  background-image: url("../../public/imgs/pages/moshaverePhone/bannerDesk.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  display: flex;
  align-items: center;
  padding: 100px;
}

.banner .content {
  color: #f1f1f1;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 380px;
  text-align: right !important;
}

.banner .content h2 {
  font-size: 1.3rem;
  text-align: right;
}
.banner .content p {
  font-size: 1rem;
  text-align: justify;
}
.banner .content span {
  font-size: 10px;
  text-align: center;
}

.banner input {
  border: 1px solid #999;
  padding: 8px 10px;
  outline: none;
  border-radius: 5px;
  width: 100%;
  text-align: center;
}

.banner button {
  background: #0fb783;
  padding: 10px 40px;
  color: white;
  border-radius: 20px;
  width: 100%;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.card .card-title {
  text-align: center;
  font-family: "Diba";
  font-size: 1.6rem;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.card .card-title i {
  font-size: 10px;
  color: #0fb783;
}
.card-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.card .box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  background: #f8f8f8;
  border: 4px solid #eee;
  padding: 20px;
  width: 200px;
  height: 180px;
  border-radius: 20px;
}

.box img {
  width: 50px;
}

.box span {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}

.links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.contact-us i {
  font-size: 16px;
}
.contact-us a {
  font-size: 14px;
}
.contact-us,
.verify-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  direction: ltr;
}

@media screen and (max-width: 1200px) {
  .banner {
    height: 80vh;
  }
}
@media screen and (max-width: 900px) {
  .card-list {
    display: grid;
    grid-template-columns: auto auto;
  }
  .banner {
    justify-content: center;
    height: 70vh;
  }
  .banner .content p {
    font-size: 0.9rem;
  }
  .head-title img {
    width: 40px;
  }
}

@media screen and (max-width: 600px) {
  .banner {
    background-image: url("../../public/imgs/pages/moshaverePhone/bannerMobile.png");
    height: 60vh;
    padding: 50px;
  }
  .head-title {
    font-size: 1.3rem;
  }
  .head-title img {
    width: 35px;
  }
  .card .card-title {
    font-size: 1.1rem;
    color: #222;
  }
  .card .box {
    width: 170px;
    height: 180px;
  }
  .banner .content {
    width: 100%;
  }
}
