.select-menu {
    margin: 30px auto;
    display: table;
    position: relative;
}
.select-menu .select-btn {
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    gap: 10px;
    width: 157px;
    height: 31px;
    background: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 20px;
    margin: 0 auto;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
}
.select-menu .options {
  position: absolute;
  overflow-y: auto;
  max-height: 205px;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-duration: 0.35s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
  width: 100%;
  visibility: hidden;
  flex-flow: column;
  gap: 10px;
}
.select-menu .options .option {
  display: flex;
  cursor: pointer;
  padding: 10px 16px;
  align-items: center;
  justify-content: center;
  background: #F1F1F1;
  border-radius: 50px;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000000;
  width: 100%;
  transition: .3s;
}
.select-menu .options .option:hover {
  background: #f2f2f2;
}
.select-menu .options .option .option-text {
  font-size: 11px;
  color: #333;
}

.select-menu.active .select-btn svg {
  transform: rotate(-180deg);
  transition: .3s;
}
.select-menu.active .options {
  display: flex;
  opacity: 0;
  z-index: 10;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  visibility: visible;
}

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
}
.pricing-page-header h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    text-align: center;
    color: #000000;
    margin: 0 0 10px;
}

.pricing-page-header p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #AAAAAA;
}
.pricing-page-header h3 {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #3C3C3C;
    margin: 0 0 10px;
}
.pricing-page-header {
    margin: 60px 0;
}

.pricing-page-plans {
    padding: 40px 0px;
    background: #F5EEFD;
}

.main-plans-pricing {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}
.individual-plan-list {
    display: grid;
    align-items: center;
    background: #FFFFFF;
    border-radius: 12px;
    grid-template-columns: 1fr 1fr;
}

.pricing-plan-block {
    border-right: 1px solid #ccc;
    padding: 70px 40px 50px 40px;
    position: relative;
}

.pricing-plan-block:last-child {
    border: 0px;
}
span.best-deal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 7px 6px;
    gap: 10px;
    position: absolute;
    top: 0px;
    background: #F1D94D;
    border-radius: 0px 0px 3px 3px;
    left: 50%;
    transform: translateX(-50%);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
}

.plan-name {
    margin: 0px auto 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    gap: 10px;
    background: #000000;
    border-radius: 50px;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFFFFF;
    width: fit-content;
}

.plan-price {
    font-style: normal;
    font-weight: 900;
    font-size: 48px;
    line-height: 60px;
    color: #000000;
    text-align: center;
}

.pricing-plan-block p, .team-plan-block p {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #AAAAAA;
    text-align: center;
    margin: 15px 0 20px;
}

.plan-benifits-list ul li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #000000;
}

.plan-benifits-list ul {
    display: flex;
    flex-flow: column;
    gap: 10px;
}

.plan-benifits-list ul li svg {
    flex: 0 0 15px;
    position: relative;
    top: 5px;
}

.plan-billed-year {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #000000;
    margin: 25px 0 20px;
}

.pricing-plan-block button, .pricing-plan-block a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    height: 48px;
    background: #4DC2F4;
    border-radius: 30px;
    width: 90%;
    margin: 0 auto;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: .3s;
}

.pricing-plan-block button:hover, .team-plan-block button:hover, .pricing-plan-block a:hover {
    background: #000;
    transition: .3s;
}
.team-plan-block {
    padding: 70px 40px 40px;
    background: #FFFFFF;
    border-radius: 12px;
}
.team-plan-block button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    height: 48px;
    background: #A389C3;
    border-radius: 30px;
    width: 90%;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: .3s;
    margin: 0 auto;
}
.team-plan-block .plan-name {
    background: #a389c3;
}
.change-seat {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #000000;
    margin: 0 0 140px;
}
.select-menu .options .option:hover {
    background: #a389c3;
    color: #fff;
}

.select-menu .options .option:hover .option-text {
    color: #fff;
}

.select-menu .select-btn svg {
    transition: .3s;
}
.student-educators {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #000000;
    margin: 30px 0 0;
}

.student-educators a {
    text-decoration: underline;
}

.student-educators a:hover {
    text-decoration: none;
}
.trusted-by-html h4 {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #000000;
}

.trusted-by-logos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    align-items: center;
    margin: 20px auto 0;
    max-width: 80%;
}

.trusted-by-html {
    padding: 50px 0;
}
.faqs-header h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    text-align: center;
    color: #000000;
}

.faqs-header {
    margin: 0 0 70px;
}
.faqs-block-question {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    text-align: left;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
}

.faqs-block p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    color: #838383;
}

.faqs-block {
    display: flex;
    flex-flow: column;
    gap: 15px;
    margin-bottom: 40px;
}

.pricing-faqs {
    margin: 0 auto;
    max-width: 80%;
}
.mobile-plan-box {display: none;}
.acc__panel {
 display: none;
}
.faqs-block-question.active {
    color: #a389c3;
}

.faqs-block-question.active svg {
    transform: rotate(-90deg);
    transition: .3s;
}

.faqs-block-question svg {
    transition: .3s;
}
.have-question {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    margin: 40px 0 70px;
}

.have-question a {
    color: #a389c3;
    text-decoration: underline;
}

.have-question a:hover {
    text-decoration: none;
}
@media only screen and (max-width: 1200px) {
.main-plans-pricing {
    grid-template-columns: 1fr;
}
}
@media only screen and (max-width: 992px) {
  .trusted-by-logos {
      display: flex;
      flex-flow: column;
      gap: 30px;
      max-width: 100%;
  }
  .pricing-faqs {
      max-width: 100%;
  }
  .faqs-header h2 {
      font-size: 30px;
      line-height: 38px;
  }
  .faqs-block-question {
      font-size: 18px;
      line-height: 26px;
  }
  .faqs-block p {
      font-size: 16px;
      line-height: 24px;
  }
  .faqs-block {
      margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
.individual-plan-list {
    display: none;
}
.mobile-plan-box {display: block;}
.mobile-plan-box .plan-name {
    background: transparent;
    border-radius: 0px;
}

.mobile-plan-box .pricing-plan-block {
    padding: 30px;
    background: #FFFFFF;
    border-radius: 12px;
}

.mobile-plan-box .plan-name .select-menu {
    margin: 20px auto 0;
}

.team-plan-block button, .pricing-plan-block button, .pricing-plan-block a {
    letter-spacing: normal;
    width: 100%;
    font-size: 13px;
}

.plan-benifits-list ul li {
    text-align: left;
}

.team-plan-block {
    padding: 30px;
}
.pricing-page-header p {
    font-size: 16px;
}
.trusted-by-html {
    padding-bottom: 0;
}
.spacing-fixed {
    max-width: 100%;
    margin-top: 0;
}
}
