.intro-section {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  margin: 0;
  width: 100%;
  min-height: 35vh;
  background: linear-gradient(to left, #0c75c0, #27a8e2);
}

.intro-section span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  text-align: center;
  width: 100%;
}

.intro-section span form {
  width: 100%;
}
.intro-section span form input {
  width: 50%;
  border: none;
  border-radius: 4rem;
  padding: 1rem;
  text-align: center;
  font-size: 22px;
}

.intro-section span a {
  color: #fff;
  cursor: pointer;
}

.intro-section .no-hover:hover {
  color: #0c75c0;
}

.title {
  width: 100%;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f4f7ff;
  text-align: center;
  padding: 3rem 2rem;
}

.sectors-sections {
  flex-direction: column;
  min-height: 50vh;
  margin: 0;
}

.sectors-sections .image img {
  border-radius: 0;
  max-width: 35rem;
  min-width: 15rem;
}

/* about section */
.about-sections {
  min-height: max-content;
  margin: 0;
}

/* pricing style */

.pricing {
  width: 100%;
  padding: 1rem 4rem;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 2rem;
}

.pricing .title-pricing {
  font-size: 35px;
  font-weight: bold;
}

.pricing .container-pricing {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

.pricing .container-pricing .card-pricing {
  width: 100%;
  min-height: 36rem;
  border-radius: 0.5rem;
  border: 1px solid #000;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  background: transparent;
  transition: all ease 0.6s;
}

.pricing .container-pricing .card-pricing:hover {
  background: #2781c130;
  border-color: #e4d7e8;
}

.pricing .container-pricing .card-pricing .advantages-card-pricing {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 0.5rem;
  margin-top: 0.2em;
  width: 100%;
}
.pricing
  .container-pricing
  .card-pricing
  .advantages-card-pricing
  .advantages-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.pricing .container-pricing .card-pricing .price-card-pricing {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 0.4rem;
}

.pricing .container-pricing .card-pricing .price-card-pricing span {
  display: flex;
}

.pricing .container-pricing .card-pricing .price-card-pricing span p {
  font-weight: bold;
}

/* end pricing style */

/* market place */

.container-market {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding: 1rem 4rem;
}

.card {
  width: 100%;
  min-height: 20rem;
  background: white;
  border-radius: 0.8rem;
  box-shadow: 1px 1px 10px #bebebe, -15px -15px 30px #ffffff;
  transition: 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.img {
  width: 100%;
  height: 50%;
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
  background: linear-gradient(#0c75c0, #27a8e2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.text {
  margin: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.text .h3 {
  font-size: 15px;
  font-weight: 600;
  color: black;
  text-align: center;
}

.text .p {
  color: #999999;
  font-size: 13px;
  text-align: center;
}

.card:hover {
  cursor: pointer;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

/* end market place */

/* fag section style */
.faq-container {
  width: 90%;
  margin: 0 auto;
  margin-top: 2rem;
}

.faq-item {
  margin-bottom: 20px;
  cursor: pointer;
}

.faq-question {
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
}

.faq-answer {
  padding: 0 20px;
  border-bottom: 1px solid #ddd;
  display: none;
  height: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.faq-item.active .faq-answer {
  display: block;
  height: auto;
  border: none;
  color: #000;
}

.arrow {
  transition: all ease 0.4s;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

/* end fag section style */

/* container login style*/
.container-login {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to left, #0c75c0, #27a8e2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.log-sign-form {
  width: 50%;
}

/* end container login style */

/* a tag */
.free-trial-link {
  color: #fff;
}

.login-link {
  color: #0c75c0;
}

/* end a tag */

@media screen and (max-width: 600px) {
  .intro-section {
    padding: 1rem;
  }

  .title {
    padding: 2rem 1rem;
  }

  .sectors-sections {
    padding: 1rem;
  }

  .pricing {
    padding: 1rem;
  }
  .container-market {
    padding: 1rem;
  }
  .log-sign-form {
    width: 90%;
  }
}
