.hero {
  max-width: 1920px;
  margin: 0 auto;
  height: min-content;
  position: relative;
  color: white;
  text-align: center;
}
.hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-body {
  z-index: 1;
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 190px 0 80px;
}
.hero-body .body1 {
  max-width: 800px;
  margin: 30px 0;
  color: white;
}

@media (max-width: 1252px) {
  .hero-body {
    margin: 0 16px;
    padding: 130px 0 60px;
  }
}
@media (max-width: 768px) {
  .hero-bg {
    object-position: 80%;
  }
  .hero-body {
    margin: 0 16px;
    padding-bottom: 40px;
  }
}
.bullet {
  max-width: 1920px;
  margin: 120px auto;
}
.bullet-h2 {
  margin-bottom: 70px;
  text-align: center;
}
.bullet-wrap {
  max-width: 1252px;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 60px;
}
.bullet-item {
  max-width: 380px;
  width: 100%;
  display: flex;
  gap: 16px;
}
.bullet-item .wrap {
  height: fit-content;
  border-radius: 30px;
  min-width: 60px;
  max-width: 60px;
  min-height: 60px;
  max-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bullet-item-body div {
  margin-bottom: 16px;
}

.bullet-item:nth-child(1) .wrap {
  background-color: #486FFF;
}

.bullet-item:nth-child(2) .wrap {
  background-color: #DB6851;
}

.bullet-item:nth-child(3) .wrap {
  background-color: #112778;
}

.bullet-item:nth-child(4) .wrap {
  background-color: #FF2DB7;
}

.bullet-item:nth-child(5) .wrap {
  background-color: #3A59CC;
}

.bullet-item:nth-child(6) .wrap {
  background-color: #F7954E;
}

@media (max-width: 1252px) {
  .bullet-wrap {
    justify-content: space-around;
  }
}
@media (max-width: 480px) {
  .bullet {
    margin: 60px 0;
  }
  .bullet-h2 {
    margin-bottom: 30px;
  }
  .bullet-wrap {
    row-gap: 30px;
  }
  .bullet-item {
    max-width: unset;
    flex-direction: column;
  }
  .bullet-item-body div {
    margin-bottom: 8px;
  }
}
.pricing {
  margin: 120px auto;
  max-width: 1220px;
}
.pricing .h2 {
  text-align: center;
  margin-bottom: 70px;
}
.pricing-plans {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}
.pricing-plan {
  position: relative;
  background-color: #EAEEFC;
  border-radius: 12px;
  padding: 100px 30px 30px;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
}
.pricing-plan .featured {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #3A59CC;
  padding: 16px;
  text-align: center;
  color: white;
  font-family: Medium;
  line-height: 1.5;
}
.pricing-plan:nth-child(1) .period {
  display: none;
}
.pricing-plan:nth-child(2) {
  background-color: white;
  border: 1px solid #3A59CC;
  box-sizing: border-box;
}
.pricing .btn {
  width: 100%;
  justify-content: center;
  margin: 40px 0;
}

.plan-title {
  font-size: 24px;
  font-family: Medium;
  line-height: 1.45;
  text-align: center;
}
.plan-subtitle {
  text-align: center;
  font-family: Medium;
  max-width: 240px;
  margin: 16px auto 6px;
}
.plan-description {
  text-align: center;
  line-height: 1.25;
}
.plan-price {
  margin: 32px auto 24px;
  font-size: 32px;
  font-family: Semi;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: flex-end;
}
.plan-price .period {
  font-size: 17px;
  line-height: 1.65;
  font-family: Regular;
}
.plan-access {
  text-align: center;
}
.plan-list {
  font-size: 18px;
  font-family: Medium;
  margin-bottom: 32px;
}

.plan-li {
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}
.plan-li svg {
  width: 12px;
  min-width: 12px;
  height: 12px;
  min-height: 12px;
  margin-top: 6px;
}
.plan-li div {
  line-height: 1.55;
  color: #404040;
  font-family: Medium;
}

.plan-li:last-child {
  margin-bottom: 0;
}

.footnote {
  font-size: 12px;
  color: #404040;
}

@media (max-width: 1252px) {
  .pricing {
    margin: 120px 16px;
  }
  .pricing .btn {
    margin: 20px 0;
  }
  .pricing-plans {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
  }
  .pricing-plan {
    padding: 30px 16px;
  }
  .pricing-plan:nth-child(2) {
    padding: 80px 16px 30px;
  }
  .plan-price {
    margin: 24px auto 12px;
  }
  .plan-list {
    margin-bottom: 20px;
  }
  .plan-li {
    margin-bottom: 16px;
  }
  .plan-li div {
    font-size: 14px;
  }
  .footnote {
    line-height: 1.35;
  }
}
@media (max-width: 768px) {
  .pricing {
    margin: 40px 16px;
  }
  .pricing .h2 {
    margin-bottom: 30px;
  }
}
.list {
  margin: 100px auto;
  max-width: 1220px;
}
.list .h2 {
  text-align: center;
  margin-bottom: 110px;
}

.row {
  display: flex;
  width: 100%;
  border-radius: 12px;
  padding: 0 20px;
}
.row-head {
  font-size: 24px;
  font-family: Medium;
  padding: 24px;
}
.row-title {
  width: 40%;
  display: flex;
  align-items: center;
}
.row-plan {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.row-plan svg {
  width: 15px;
  height: 10px;
}
.row-plan:nth-child(3) {
  border-right: 1px solid #3A59CC;
  border-left: 1px solid #3A59CC;
  padding: 20px 0;
}
.row-access {
  font-family: Medium;
  font-size: 14px;
  text-align: center;
}
.row-price {
  font-size: 24px;
  font-family: Medium;
  padding-top: 32px 0 20px !important;
}
.row-price span {
  font-family: Regular;
  font-size: 16px;
  margin-left: 6px;
  margin-bottom: -2px;
}
.row-price div:nth-child(2) {
  margin-top: 32px;
}
.row-last {
  background-color: transparent !important;
  padding: 0 20px;
}

.row:nth-child(odd) {
  background-color: #EAEEFC;
}

.row-cta:nth-child(3) {
  border: 1px solid #3A59CC;
  border-top: 0;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.row-last .row-plan {
  padding: 0 0 20px;
}

.row-head-most {
  position: relative;
}

.most-popular {
  position: absolute;
  left: -1px;
  top: 0;
  transform: translateY(-100%);
  width: calc(100% + 2px);
  background-color: #3A59CC;
  padding: 18px 0;
  display: flex;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-family: Medium;
  border: 1px solid #3A59CC;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  text-align: center;
}

@media (max-width: 1252px) {
  .list {
    margin: 100px 16px;
  }
}
@media (max-width: 1000px) {
  .choose-option, .row-last {
    display: none;
  }
  .row-access:nth-child(3) {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border-bottom: 1px solid #3A59CC;
  }
}
@media (max-width: 768px) {
  .list {
    margin: 40px 16px;
  }
  .list .h2 {
    margin-bottom: 60px;
  }
  .row {
    border-radius: 8px;
    padding: 0 0 0 8px;
  }
  .row-head {
    font-size: 12px;
  }
  .row-title {
    font-size: 14px;
    width: 46%;
    padding: 6px 0;
  }
  .row-plan {
    width: 18%;
  }
  .row-access {
    font-size: 12px;
    padding: 0 4px;
  }
  .most-popular {
    font-size: 12px;
    padding: 4px 0;
  }
}
.faq {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: 80px 0;
}
.faq-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.faq-body {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 30px;
  max-width: 1220px;
  margin: 0 auto;
}
.faq-col img {
  max-width: 390px;
  border-radius: 24px;
  margin-top: 20px;
}
.faq-col-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-block-question {
  border-radius: 8px;
  background-color: white;
  color: #404040;
  font-family: Semi;
  line-height: 1.4;
  font-size: 18px;
  padding: 20px 16px 20px 12px;
  transition: ease 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-block-question svg {
  fill: #404040;
  width: 14px;
  min-width: 14px;
  height: 10px;
  min-height: 10px;
  transition: ease 0.3s;
}
.faq-block-question:hover {
  cursor: pointer;
  background-color: #EAEEFC;
}
.faq-block-answer {
  height: 0;
  padding: 0 12px;
  line-height: 1.35;
  background-color: transparent;
  color: transparent;
  transition: ease 0.3s;
}
.faq .open .faq-block-question svg {
  transform: rotate(-90deg);
}
.faq .open .faq-block-answer {
  height: max-content;
  padding: 20px 12px;
  color: #404040;
}

@media (max-width: 1252px) {
  .faq-body {
    margin: 0 16px;
  }
}
@media (max-width: 1000px) {
  .faq {
    padding: 40px 0;
  }
  .faq-bg {
    object-fit: cover;
    object-position: 88%;
  }
  .faq-body {
    flex-direction: column;
    align-items: center;
  }
  .faq-col img {
    display: none;
  }
  .faq-block-question {
    gap: 16px;
    font-size: 16px;
    padding: 12px;
  }
}