.landing-page {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgb(249, 252, 253);
  overflow: hidden;
}
.landing-page .design-landing {
  position: relative;
  width: fit-content;
  height: fit-content;
  top: 0;
  right: 0;
}
.landing-page .design-landing img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.landing-page .site-header {
  display: flex;
  align-items: center;
  position: fixed;
  justify-content: space-between;
  width: 85%;
  transform: translateX(50%);
  right: 50%;
  top: 40px;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0px 4px 24px 0px rgba(141, 78, 43, 0.08);
  border-radius: 20px;
  z-index: 1000;
}
.landing-page .site-header .site-menu {
  flex-basis: 500px;
  display: flex;
  justify-content: center;
}
.landing-page .site-header .site-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
}
.landing-page .site-header .site-menu ul li a {
  color: #000;
  font-weight: 400;
  font-size: 14px;
}
.landing-page .site-header .site-menu ul li a.active {
  position: relative;
  font-weight: 600;
}
.landing-page .site-header .site-menu ul li a.active::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #000;
  bottom: -10px;
  right: 0;
}
.landing-page .site-header .site-menu ul li a.active::after {
  content: "";
  position: absolute;
  width: calc(100% - 15px);
  height: 5px;
  background: rgb(254, 218, 21);
  bottom: -10px;
  right: 10px;
}
.landing-page .site-header .download-ico {
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing-page .site-header .download-ico-inner {
  width: 50px;
  height: 50px;
  padding: 10px;
  background: rgb(218, 229, 227);
  border-radius: 15px;
}
.landing-page .site-header .download-ico-inner a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.landing-page .site-header .menu-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.landing-page .site-header .menu-ico-inner {
  width: 50px;
  height: 50px;
  padding: 10px;
  background: rgb(218, 229, 227);
  border-radius: 15px;
}
.landing-page .site-header .menu-ico-inner button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.landing-page .site-header .menu-ico-inner button img {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 840px) {
  .landing-page .site-header {
    width: fit-content;
    left: 5%;
    transform: unset;
    right: unset;
  }
  .landing-page .site-header .site-menu {
    display: none;
  }
  .landing-page .site-header .download-ico {
    display: none;
  }
  .landing-page .site-header .menu-ico {
    display: block;
  }
  .landing-page .site-header .site-logo {
    display: none;
  }
}
.landing-page .download-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.landing-page .download-btns .btn {
  width: fit-content;
  height: fit-content;
}
.landing-page .download-btns .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #000;
  font-size: 14px;
  width: 202px;
  padding: 12px;
  border-radius: 5px;
  box-shadow: 0px 4px 24px 0px rgba(141, 78, 43, 0.08);
}
.landing-page .download-btns .btn a img {
  width: 20px;
  height: 20px;
}
.landing-page .download-btns .btn a.style_1 {
  background: rgb(138, 210, 94);
}
.landing-page .download-btns .btn a.style_2 {
  background: rgb(145, 209, 255);
}
.landing-page .download-btns .btn a.style_3 {
  background: rgb(255, 255, 255);
}
.landing-page .download-btns .btn a.style_4 {
  background: rgb(254, 218, 21);
}
@media screen and (max-width: 470px) {
  .landing-page .download-btns {
    flex-direction: column;
    width: 100%;
  }
  .landing-page .download-btns .btn {
    width: 100%;
  }
  .landing-page .download-btns .btn a {
    width: 100%;
  }
}
.landing-page .hero-landing {
  display: flex;
  align-items: center;
  margin: 120px 0;
  flex-direction: column;
  margin-top: -170px;
  text-align: center;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .landing-page .hero-landing {
    height: 100%;
  }
}
@media screen and (max-width: 840px) {
  .landing-page .hero-landing {
    margin-top: -250px;
  }
}
.landing-page .hero-landing .title {
  margin-bottom: 40px;
}
.landing-page .hero-landing .title h1 {
  margin-bottom: 10px;
  font-size: 50px;
}
.landing-page .hero-landing .title p {
  color: rgb(23, 29, 30);
  font-size: 14px;
  line-height: 1.7em;
}
@media screen and (max-width: 992px) {
  .landing-page .hero-landing .download-btns {
    flex-wrap: wrap;
  }
}
.landing-page .trust-landing {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 120px 0;
  text-align: center;
  flex-direction: column;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .landing-page .trust-landing {
    height: 100%;
    margin: 50px 0;
  }
}
.landing-page .trust-landing .title {
  margin-bottom: 40px;
}
.landing-page .trust-landing .title h1 {
  margin-bottom: 20px;
}
.landing-page .trust-landing .title p {
  font-size: 14px;
  color: rgb(23, 29, 30);
  font-size: 14px;
  line-height: 1.7em;
  width: 850px;
}
@media screen and (max-width: 930px) {
  .landing-page .trust-landing .title p {
    width: 100%;
  }
}
.landing-page .trust-landing .content {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .landing-page .trust-landing .content {
    flex-wrap: wrap;
  }
}
.landing-page .trust-landing .content .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.landing-page .trust-landing .content .box .inner {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f9e287 0%, #ffb691 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.landing-page .trust-landing .content .box span {
  font-weight: 500;
  font-size: 13px;
}
.landing-page .op-landing {
  display: flex;
  justify-content: center;
  margin: 120px 0;
  padding: 0 20px;
}
@media screen and (max-width: 800px) {
  .landing-page .op-landing {
    height: auto;
    margin: 30px 0;
  }
  .landing-page .op-landing .inner {
    flex-direction: column;
  }
}
.landing-page .op-landing .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 30px;
  max-width: 1000px;
}
.landing-page .op-landing .inner .title h1 {
  margin-bottom: 30px;
}
.landing-page .op-landing .inner .title p {
  font-size: 14px;
  color: rgb(23, 29, 30);
  font-size: 14px;
  line-height: 1.7em;
}
.landing-page .op-landing .inner .section-hero-inner {
  width: 370px;
  height: 370px;
}
@media screen and (max-width: 470px) {
  .landing-page .op-landing .inner .section-hero-inner {
    width: 310px;
    height: 310px;
  }
}
.landing-page .op-landing .inner .section-hero-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.landing-page .comments {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 0 20px;
}
.landing-page .comments .section-design {
  position: absolute;
  bottom: -150px;
  right: 25px;
}
.landing-page .comments .section-design img {
  width: 100%;
  height: 100%;
}
.landing-page .comments-title {
  text-align: center;
  margin-bottom: 40px;
}
.landing-page .comments-title h1 {
  margin-bottom: 20px;
}
.landing-page .comments-title p {
  font-size: 14px;
  color: rgb(23, 29, 30);
  font-size: 14px;
  line-height: 1.7em;
  width: 850px;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 930px) {
  .landing-page .comments-title p {
    width: 100%;
  }
}
.landing-page .comments .sections {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  width: 100%;
  height: 100%;
  position: relative;
  width: 1200px;
  margin: 0 auto;
  padding: 20px;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .landing-page .comments .sections {
    width: 100%;
  }
}
@media screen and (max-width: 930px) {
  .landing-page .comments .sections {
    gap: 10px;
    padding: 10px;
  }
}
.landing-page .comments .sections .background-style {
  position: absolute;
  background: url("../images/rectangle.svg");
  background-position: center;
  background-size: contain;
  width: 800px;
  height: 800px;
  background-repeat: no-repeat;
  top: 0;
  z-index: 2;
}
.landing-page .comments .sections .section {
  flex: 1;
}
.landing-page .comments .sections .center {
  flex-basis: 300px;
  padding: 40px 0;
}
.landing-page .comments .sections .center h3 {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
  font-size: 20px;
}
.landing-page .comments .sections .comment-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  position: relative;
  z-index: 4;
}
.landing-page .comments .sections .comment-box:not(:last-child) {
  margin-bottom: 10px;
}
.landing-page .comments .sections .comment-box.lg {
  width: 100%;
}
.landing-page .comments .sections .comment-box.lg2 {
  margin-right: -5%;
}
.landing-page .comments .sections .comment-box.sm {
  width: 90%;
  margin-right: 15%;
}
.landing-page .comments .sections .comment-box.sm2 {
  width: 90%;
  margin-left: 15%;
}
@media screen and (max-width: 930px) {
  .landing-page .comments .sections .comment-box.lg2 {
    margin-right: 0;
  }
  .landing-page .comments .sections .comment-box.sm {
    width: 100%;
    margin-right: 0;
  }
  .landing-page .comments .sections .comment-box.sm2 {
    width: 100%;
    margin-left: 0;
  }
}
.landing-page .comments .sections .comment-box .writer-information {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.landing-page .comments .sections .comment-box .writer-information .profile {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing-page .comments .sections .comment-box .writer-information .profile.green {
  background: linear-gradient(180deg, #ffd844 0%, #8ad25e 100%);
}
.landing-page .comments .sections .comment-box .writer-information .profile.red {
  background: linear-gradient(180deg, #f14e5d 0%, #ffb691 100%);
}
.landing-page .comments .sections .comment-box .writer-information .info h4 {
  font-weight: 600;
}
.landing-page .comments .sections .comment-box .writer-information .info span {
  font-size: 11px;
  color: rgb(63, 73, 71);
}
.landing-page .comments .sections .comment-box .writer-comment p {
  font-weight: 500;
  font-size: 12px;
  color: rgb(23, 29, 30);
  text-align: justify;
  line-height: 1.7em;
}
@media screen and (max-width: 800px) {
  .landing-page .comments .sections {
    flex-direction: column;
  }
  .landing-page .comments .sections .center {
    order: 1;
    padding: 0;
    flex-basis: auto;
  }
  .landing-page .comments .sections .section {
    order: 2;
  }
}
.landing-page .faqs {
  margin-top: 100px;
  margin: 120px 0;
  padding: 0 20px;
}
@media screen and (max-width: 800px) {
  .landing-page .faqs {
    height: 100%;
  }
}
.landing-page .faqs h1 {
  width: 100%;
  text-align: center;
}
.landing-page .faqs .container {
  max-width: 990px;
  margin: 0 auto;
  margin-top: 40px;
}
.landing-page .faqs .container .accordion .accordion-item {
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
}
.landing-page .faqs .container .accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid rgb(111, 121, 120);
}
.landing-page .faqs .container .accordion .accordion-item:not(:last-child) {
  margin-bottom: 15px;
}
.landing-page .faqs .container .accordion button {
  position: relative;
  display: block;
  text-align: right;
  width: 100%;
  padding: 1em 0;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: none;
  outline: none;
}
.landing-page .faqs .container .accordion button:hover, .landing-page .faqs .container .accordion button:focus {
  cursor: pointer;
  opacity: 1;
}
.landing-page .faqs .container .accordion button:hover::after, .landing-page .faqs .container .accordion button:focus::after {
  cursor: pointer;
  opacity: 1;
  border: 1px solid #000;
}
.landing-page .faqs .container .accordion button .accordion-title {
  display: block;
  width: 80%;
}
.landing-page .faqs .container .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid rgb(254, 218, 21);
  border-radius: 22px;
  background-color: rgb(254, 218, 21);
}
.landing-page .faqs .container .accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: #fff;
}
.landing-page .faqs .container .accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: #fff;
}
.landing-page .faqs .container .accordion button[aria-expanded=true] {
  color: #000;
}
.landing-page .faqs .container .accordion button[aria-expanded=true] .icon {
  transform: rotate(225deg);
  top: 24%;
  background-color: rgb(198, 92, 75);
  border-color: rgb(198, 92, 75);
}
.landing-page .faqs .container .accordion button[aria-expanded=true] .icon::after {
  width: 2px;
}
.landing-page .faqs .container .accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 35em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.landing-page .faqs .container .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.landing-page .faqs .container .accordion .accordion-content p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7em;
  margin: 2em 0;
}
.landing-page .landing-footer {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 10px;
  background-color: rgb(56, 56, 56);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.landing-page .landing-footer::before {
  content: "";
  background-image: url("../images/footer-design_1.png");
  position: absolute;
  top: 0;
  right: 0;
  width: 360px;
  height: 360px;
  z-index: 1;
}
.landing-page .landing-footer .right-side {
  position: relative;
  z-index: 2;
}
.landing-page .landing-footer .right-side .top {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}
.landing-page .landing-footer .right-side .top .landing-logo img {
  width: 90px;
}
.landing-page .landing-footer .right-side .top h1 {
  font-weight: 800;
  font-size: 40px;
  color: rgb(254, 218, 21);
}
.landing-page .landing-footer .right-side .bottom .download-btns .btn:not(:last-child) {
  margin-bottom: 15px;
}
.landing-page .landing-footer .left-side {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .landing-page .landing-footer .left-side img {
    width: 85%;
  }
}
.landing-page .landing-footer::after {
  content: "";
  background-image: url("../images/footer-design_2.png");
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 240px;
  z-index: 1;
  background-position: center;
  background-size: cover;
}
.landing-page .landing-footer .design_footer_3 {
  background-image: url("../images/footer-design_4.png");
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 500px;
  height: 500px;
  z-index: 1;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 992px) {
  .landing-page .landing-footer {
    flex-direction: column;
    height: auto;
    gap: 20px;
    padding: 30px 0 0;
  }
  .landing-page .landing-footer::after {
    display: none;
  }
  .landing-page .landing-footer .left-side img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .landing-page .landing-footer .right-side {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .landing-page .landing-footer .right-side .bottom .download-btns {
    flex-wrap: wrap;
  }
  .landing-page .landing-footer .left-side img {
    width: 80%;
  }
}
@media screen and (max-width: 576px) {
  .landing-page .landing-footer .right-side .top .landing-logo img {
    width: 60px;
  }
  .landing-page .landing-footer .right-side .top h1 {
    font-size: 30px;
  }
  .landing-page .landing-footer .right-side .bottom {
    width: 100%;
    padding: 0 20px;
  }
  .landing-page .landing-footer .right-side .bottom div {
    width: 100%;
  }
  .landing-page .landing-footer .left-side img {
    display: none;
  }
}
.landing-page .copy {
  font-size: 13px;
  color: #000;
  text-align: center;
  background-color: rgb(254, 218, 21);
  padding: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 630px) {
  .landing-page .copy {
    flex-direction: column;
    gap: 10px;
  }
}
.landing-page .copy .eNamad {
  display: flex;
  align-items: center;
}
.landing-page .copy .eNamad a img {
  width: 60px;
}/*# sourceMappingURL=index.css.map */