.center {
  text-align: center;
  margin-top: 90px;
  margin-bottom: 40px;
}
.pricing-bg {
  background: url("../images/pricingbg.svg") no-repeat center center/cover;
}

.black {
  color: black;
}

.benefits {
  background: #0081c9;
}

.benefits .container .part-3 {
  display: flex;
  justify-content: space-between;
}

.benefits .container .part-3 .text-benefits {
  display: flex;
  gap: 1rem;
  color: white;
}
.container .last-sec .last {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.container .resp .input {
  text-align: center;
  display: flex;

  gap: 1rem;
}

.question {
  margin-bottom: 15px;
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.question-text {
  font-weight: 400;
  font-size: 16px;
  color: #001c33;
  cursor: pointer;
  margin-right: auto;
}

.dropdown-arrow {
  display: inline-block;
  margin-left: auto;
  /* width: 12px;
    height: 12px;
    border-left: 1px solid black;
    border-bottom: 1px solid black;
    transform: rotate(-45deg);
    margin-left: 5px; */
  cursor: pointer;
}

.container .question .answer {
  display: none;
  margin-top: 1rem;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #959595;
}

.question::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin-top: 1rem;
}

/* <-----pricing card------> */

.pricing-card {
  width: 255px;
  border-radius: 10px;
  background: #f3f7f5;
  padding: 30px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.popular-banner {
  position: absolute;
  top: 25px;
  right: -30px;
  transform: rotateZ(45deg);
  font-size: 13px;
  background: linear-gradient(#f10b03 0%, #d11c04 100%);
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
  color: #fff;
  width: 9rem;
  text-align: center;
  padding: 5px 0;
  font-weight: 600;
}

.pricing-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.pricing-price {
  margin-bottom: 20px;
}

.discount {
  color: #959595;

  font-family: Noto Sans;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: line-through;
}

li {
  display: flex;
  gap: 1rem;
}

.pricing-card-align {
  display: flex;
  justify-content: space-between;
  gap: 1px;
}

.price-monthly {
  font-size: 36px;
  font-weight: 600;
}

.price-linedcrossed {
  font-size: 18px;
  font-weight: bold;
  display: none;
}

.pricing-features {
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-features li {
  margin-bottom: 10px;
}

.toggle-button {
  padding: 10px 20px;
  border-radius: 10px;
  background: #168aad;
  color: white;
  border: none;
  cursor: pointer;
}
.plans-btn {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  /* margin-top: 80px; */
}

@media screen and (max-width: 750px) {
  .container .part-3 {
    flex-wrap: wrap;
    gap: 2em;
  }

  .container .last-sec .resp {
    flex-wrap: wrap;
    text-align: center;
  }

  .container .resp .input {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .dropdown-arrow {
    margin-left: 0;
    margin-top: 5px;
  }

  .answer {
    margin-top: 10px;
  }
  .pricing-card-align {
    flex-wrap: wrap;
  }
  .pricing-card {
    max-width: 100%;
  }
}
