@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Cairo", sans-serif;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 99;
}
.header .header_wrapper {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header_wrapper_logo {
  width: 9.438rem;
  height: 5.688rem;
  transition: all 0.4s ease-in-out;
}
.header .header_wrapper_logo a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.header .header_wrapper_logo a img {
  width: 100%;
  height: 100%;
}
.header .header_wrapper_menu ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.5rem;
}
.header .header_wrapper_menu ul li a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #000000;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 600;
}
.header .header_wrapper_menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #206983;
  transition: width 0.4s ease;
}
.header .header_wrapper_menu ul li a:hover {
  color: #206983;
  transition: width 0.4s ease;
}
.header .header_wrapper_menu ul li a:hover::after {
  width: 100%;
}
.header .header_wrapper .menu_close {
  display: none;
}
.header .header_wrapper .menu_close button {
  background: none;
  border: none;
}
.header .header_wrapper .menu_btn {
  display: none;
}
.header .header_wrapper .menu_btn button {
  background: none;
  border: none;
}
.header.scroll {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.header.scroll .header_wrapper_logo {
  width: 105px;
  height: 72px;
  transition: all 0.4s ease-in-out;
}

.main_hero_section {
  margin-top: 7.75rem;
}
.main_hero_section .main_hero_section_wrapper_block {
  position: relative;
  width: 100%;
  height: 80vh;
}
.main_hero_section .main_hero_section_wrapper_block h1, .main_hero_section .main_hero_section_wrapper_block h2, .main_hero_section .main_hero_section_wrapper_block h3, .main_hero_section .main_hero_section_wrapper_block h4, .main_hero_section .main_hero_section_wrapper_block h5, .main_hero_section .main_hero_section_wrapper_block h6 {
  width: 500px;
  font-size: 6.563rem;
  font-weight: 400;
  margin-bottom: 0;
}
.main_hero_section .main_hero_section_wrapper_block_box {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  position: absolute;
  top: 100px;
  left: 360px;
}
.main_hero_section .main_hero_section_wrapper_block_box .image_wrapper {
  width: 400px;
  height: 100%;
  position: relative;
}
.main_hero_section .main_hero_section_wrapper_block_box .image_wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.8/2.4;
}
.main_hero_section .main_hero_section_wrapper_block_box .image_wrapper .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: #FFF;
  background: linear-gradient(0deg, rgb(255, 255, 255) 4%, rgba(255, 255, 255, 0) 54%);
}
.main_hero_section .main_hero_section_wrapper_block_box p {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 0;
  font-weight: 700;
  width: 370px;
  right: 0;
  bottom: 0;
  margin-bottom: 80px;
}

.overview_section {
  margin-top: 5rem;
}
.overview_section .overview_section_wrapper h1, .overview_section .overview_section_wrapper h2, .overview_section .overview_section_wrapper h3, .overview_section .overview_section_wrapper h4, .overview_section .overview_section_wrapper h5, .overview_section .overview_section_wrapper h6 {
  font-size: 4rem;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
  margin-bottom: 0;
}
.overview_section .overview_section_wrapper p {
  font-size: 18px;
  text-align: center;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.overview_section .overview_section_wrapper_block .row {
  justify-content: center;
  --bs-gutter-x:3rem;
  --bs-gutter-y:3rem;
}
.overview_section .overview_section_wrapper_block .info_card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  background-color: #206983;
  padding: 2rem;
  border-radius: 1.5rem;
}
.overview_section .overview_section_wrapper_block .info_card h1, .overview_section .overview_section_wrapper_block .info_card h2, .overview_section .overview_section_wrapper_block .info_card h3, .overview_section .overview_section_wrapper_block .info_card h4, .overview_section .overview_section_wrapper_block .info_card h5, .overview_section .overview_section_wrapper_block .info_card h6 {
  font-size: 2.188rem;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: start;
}
.overview_section .overview_section_wrapper_block .info_card p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-align: start;
}
.overview_section .overview_section_wrapper_block .info_card p:last-child {
  margin-bottom: 0;
}

.customer_section .customer_section_wrapper.bg_white {
  background-color: #ffffff;
}
.customer_section .customer_section_wrapper {
  background-color: #206983;
}
.customer_section .customer_section_wrapper_block .row {
  --bs-gutter-x:4rem;
}
.customer_section .customer_section_wrapper_block.heading_black h1, .customer_section .customer_section_wrapper_block.heading_black h2, .customer_section .customer_section_wrapper_block.heading_black h3, .customer_section .customer_section_wrapper_block.heading_black h4, .customer_section .customer_section_wrapper_block.heading_black h5, .customer_section .customer_section_wrapper_block.heading_black h6 {
  color: #000000;
}
.customer_section .customer_section_wrapper_block.subscription_bottom h1, .customer_section .customer_section_wrapper_block.subscription_bottom h2, .customer_section .customer_section_wrapper_block.subscription_bottom h3, .customer_section .customer_section_wrapper_block.subscription_bottom h4, .customer_section .customer_section_wrapper_block.subscription_bottom h5, .customer_section .customer_section_wrapper_block.subscription_bottom h6 {
  color: #000000;
  margin-bottom: 2.5rem;
}
.customer_section .customer_section_wrapper_block h1, .customer_section .customer_section_wrapper_block h2, .customer_section .customer_section_wrapper_block h3, .customer_section .customer_section_wrapper_block h4, .customer_section .customer_section_wrapper_block h5, .customer_section .customer_section_wrapper_block h6 {
  font-size: 4rem;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
}
.customer_section .customer_section_wrapper_block .right .image_wrapper {
  justify-content: flex-end;
}
.customer_section .customer_section_wrapper_block .image_wrapper {
  width: 100%;
  height: auto;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.customer_section .customer_section_wrapper_block .image_wrapper img {
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 2rem;
}
.customer_section .customer_section_wrapper_block .detail_info.detail_info_black h1, .customer_section .customer_section_wrapper_block .detail_info.detail_info_black h2, .customer_section .customer_section_wrapper_block .detail_info.detail_info_black h3, .customer_section .customer_section_wrapper_block .detail_info.detail_info_black h4, .customer_section .customer_section_wrapper_block .detail_info.detail_info_black h5, .customer_section .customer_section_wrapper_block .detail_info.detail_info_black h6 {
  color: #000000;
}
.customer_section .customer_section_wrapper_block .detail_info.detail_info_black p {
  color: #000000;
}
.customer_section .customer_section_wrapper_block .detail_info.detail_info_black ul li {
  color: #000000;
}
.customer_section .customer_section_wrapper_block .detail_info.detail_info_black ul li p {
  color: #000000;
}
.customer_section .customer_section_wrapper_block .detail_info h1, .customer_section .customer_section_wrapper_block .detail_info h2, .customer_section .customer_section_wrapper_block .detail_info h3, .customer_section .customer_section_wrapper_block .detail_info h4, .customer_section .customer_section_wrapper_block .detail_info h5, .customer_section .customer_section_wrapper_block .detail_info h6 {
  text-align: start;
  font-size: 2.813rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.customer_section .customer_section_wrapper_block .detail_info p {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.customer_section .customer_section_wrapper_block .detail_info p:last-child {
  margin-bottom: 0;
  font-weight: 700;
}
.customer_section .customer_section_wrapper_block .detail_info ul p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.customer_section .customer_section_wrapper_block .detail_info ul li {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  padding-bottom: 1rem;
}
.customer_section .customer_section_wrapper_block .detail_info ul li strong {
  font-weight: 700;
}
.customer_section .customer_section_wrapper_block .detail_info ul li p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 400;
}
.customer_section .customer_section_wrapper_block .detail_info ul li p strong {
  font-weight: 700;
}

.subscription_block .row {
  --bs-gutter-x:3rem;
}
.subscription_block h1, .subscription_block h2, .subscription_block h3, .subscription_block h3, .subscription_block h4, .subscription_block h5, .subscription_block h6 {
  font-size: 4rem;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #ffffff;
}
.subscription_block .subscription_card.bg_primery {
  background-color: #206983;
}
.subscription_block .subscription_card.bg_primery h1, .subscription_block .subscription_card.bg_primery h2, .subscription_block .subscription_card.bg_primery h3, .subscription_block .subscription_card.bg_primery h3, .subscription_block .subscription_card.bg_primery h4, .subscription_block .subscription_card.bg_primery h5, .subscription_block .subscription_card.bg_primery h6 {
  color: #ffffff;
  margin-bottom: 2.5rem;
}
.subscription_block .subscription_card.bg_primery table thead tr th {
  color: #ffffff;
}
.subscription_block .subscription_card.bg_primery table thead tr td {
  color: #ffffff;
}
.subscription_block .subscription_card.bg_primery table tbody tr {
  border-top: 1px solid #ffffff;
}
.subscription_block .subscription_card.bg_primery table tbody tr td {
  color: #ffffff;
}
.subscription_block .subscription_card {
  border-radius: 1rem;
  padding: 1.5rem 2.5rem;
  background-color: #ffffff;
}
.subscription_block .subscription_card h1, .subscription_block .subscription_card h2, .subscription_block .subscription_card h3, .subscription_block .subscription_card h3, .subscription_block .subscription_card h4, .subscription_block .subscription_card h5, .subscription_block .subscription_card h6 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #000000;
  text-align: start;
  margin-bottom: 0.5rem;
}
.subscription_block .subscription_card table {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.subscription_block .subscription_card table thead {
  width: 100%;
  margin-bottom: 1.5rem;
}
.subscription_block .subscription_card table thead tr {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.subscription_block .subscription_card table thead tr th {
  font-size: 1.5625rem;
  line-height: 1.3;
  font-weight: 600;
  color: #000000;
}
.subscription_block .subscription_card table thead tr th:nth-child(2) {
  text-align: end;
}
.subscription_block .subscription_card table thead tr td {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}
.subscription_block .subscription_card table thead tr td:nth-child(2) {
  text-align: end;
}
.subscription_block .subscription_card table thead:nth-child(2) {
  background-color: #ffffff;
  border-radius: 1rem;
  margin-bottom: 2.5rem;
  padding: 0.75rem;
  position: relative;
}
.subscription_block .subscription_card table thead:nth-child(2) tr {
  justify-content: space-evenly;
}
.subscription_block .subscription_card table thead:nth-child(2) tr th {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
}
.subscription_block .subscription_card table thead:nth-child(2) tr td {
  color: #000000;
}
.subscription_block .subscription_card table thead:nth-child(2)::after {
  content: "";
  width: 1px;
  height: 60px;
  background-color: #206983;
  position: absolute;
  top: 7px;
  left: 53%;
}
.subscription_block .subscription_card table tbody {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.subscription_block .subscription_card table tbody tr {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(64, 64, 64, 0.4666666667);
}
.subscription_block .subscription_card table tbody tr td {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
}
.subscription_block .subscription_card .bottom_table {
  width: 100%;
  padding: 1rem;
  background-color: #ffffff;
  margin-top: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}
.subscription_block .subscription_card .bottom_table_data {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.subscription_block .subscription_card .bottom_table_data p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 0;
}
.subscription_block .subscription_card .bottom_table_data p:last-child {
  font-size: 0.938rem;
}

.subscription_section_wrapper_slider {
  padding-bottom: 110px;
  position: relative;
}
.subscription_section_wrapper_slider .swiper-slide {
  width: 50%;
}
.subscription_section_wrapper_slider .swiper-slide-active {
  width: 50%;
  transition: all 0.3s ease-out;
}
.subscription_section_wrapper_slider .swiper-slide-prev {
  width: 50%;
  transform: scale(0.9);
  transition: all 0.3s ease-out;
}
.subscription_section_wrapper_slider .swiper-slide-next {
  width: 50%;
  transform: scale(0.9);
  transition: all 0.3s ease-out;
}
.subscription_section_wrapper_slider .swiper-button-next, .subscription_section_wrapper_slider .swiper-button-prev {
  width: 3.5rem;
  height: 3.5rem;
  border: 3px solid #206983;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.subscription_section_wrapper_slider .swiper-button-next svg, .subscription_section_wrapper_slider .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  padding: 0.75rem;
}
.subscription_section_wrapper_slider .swiper-button-next svg {
  rotate: 180deg;
}
.subscription_section_wrapper_slider_button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.download_logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.download_logo_wrapper {
  width: 240px;
  height: auto;
}
.download_logo_wrapper a {
  display: inline-block;
  width: 100%;
}
.download_logo_wrapper a img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0.5rem;
}

.app_info_sec .app_info_sec_wrapper {
  position: relative;
}
.app_info_sec .app_info_sec_wrapper_block_content {
  display: flex;
  gap: 2.5rem;
}
.app_info_sec .app_info_sec_wrapper_block_content .image_wrapper {
  width: 422px;
  height: 344px;
}
.app_info_sec .app_info_sec_wrapper_block_content .image_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper {
  margin-top: 3rem;
}
.app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h1, .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h2, .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h3, .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h4, .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h5, .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h6 {
  font-size: 1.5625rem;
  line-height: 1.3;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}
.app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper ul li {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  padding-bottom: 0.5rem;
}
.app_info_sec .app_info_sec_wrapper_desc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #206983;
  padding: 2.5rem;
  position: absolute;
  top: 276px;
}
.app_info_sec .app_info_sec_wrapper_desc .detail {
  width: 480px;
  text-align: center;
}
.app_info_sec .app_info_sec_wrapper_desc .detail h1, .app_info_sec .app_info_sec_wrapper_desc .detail h2, .app_info_sec .app_info_sec_wrapper_desc .detail h3, .app_info_sec .app_info_sec_wrapper_desc .detail h4, .app_info_sec .app_info_sec_wrapper_desc .detail h5, .app_info_sec .app_info_sec_wrapper_desc .detail h6 {
  font-size: 1.5625rem;
  line-height: 1.3;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}
.app_info_sec .app_info_sec_wrapper_desc .detail p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
  color: #ffffff;
}

.footer {
  margin-top: 93px;
}
.footer .footer_wrapper_block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.footer .footer_wrapper_block .footer_img_wrapper {
  width: 151px;
  height: auto;
}
.footer .footer_wrapper_block .footer_img_wrapper a {
  display: inline-block;
  width: 100%;
}
.footer .footer_wrapper_block .footer_img_wrapper a img {
  width: 100%;
  height: auto;
}
.footer .footer_wrapper_block .footer_policy_wrapper {
  margin: 1.5rem 0;
}
.footer .footer_wrapper_block .footer_policy_wrapper ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.footer .footer_wrapper_block .footer_policy_wrapper ul li a {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  color: #000000;
  transition: color 0.4s ease-out;
}
.footer .footer_wrapper_block .footer_policy_wrapper ul li a:hover {
  color: #206983;
}
.footer .footer_wrapper_block .footer_icon_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.footer .footer_wrapper_block .footer_icon_wrapper a {
  display: inline-block;
  width: 2rem;
  height: 2rem;
}
.footer .footer_wrapper_block .footer_icon_wrapper a svg {
  width: 100%;
  height: 100%;
}
.footer .footer_wrapper .footer_copiright {
  border-top: 1px solid rgba(64, 64, 64, 0.4666666667);
  padding: 1rem 0;
}
.footer .footer_wrapper .footer_copiright_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer_wrapper .footer_copiright_wrapper p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 0;
}
.footer .footer_wrapper .footer_copiright_wrapper_support {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}
.footer .footer_wrapper .footer_copiright_wrapper_support a {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  color: #000000;
  transition: color 0.4s ease-out;
}
.footer .footer_wrapper .footer_copiright_wrapper_support a:hover {
  color: #206983;
}
.footer .footer_wrapper .footer_copiright_wrapper_support p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
}

.terms_and_condition.faqs_page {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.terms_and_condition .terms_and_condition_wrapper.faqs_page_wrapper {
  width: 70%;
}
.terms_and_condition .terms_and_condition_wrapper {
  padding: 9.438rem 0 0 0;
}
.terms_and_condition .terms_and_condition_wrapper_title {
  margin-bottom: 1.5rem;
}
.terms_and_condition .terms_and_condition_wrapper_title h1, .terms_and_condition .terms_and_condition_wrapper_title h2, .terms_and_condition .terms_and_condition_wrapper_title h3, .terms_and_condition .terms_and_condition_wrapper_title h4, .terms_and_condition .terms_and_condition_wrapper_title h5, .terms_and_condition .terms_and_condition_wrapper_title h6 {
  font-size: 1.5625rem;
  line-height: 1;
  font-weight: 700;
}
.terms_and_condition .terms_and_condition_wrapper_textarea p {
  font-size: 0.938rem;
}
.terms_and_condition .terms_and_condition_wrapper_textarea h2 {
  font-size: 1.188rem;
  font-weight: 700;
}
.terms_and_condition .terms_and_condition_wrapper_textarea h4 {
  font-size: 0.938rem;
  font-weight: 700;
}
.terms_and_condition .terms_and_condition_wrapper_textarea ul {
  padding: 0 0 0 2rem;
}
.terms_and_condition .terms_and_condition_wrapper_textarea ul li {
  font-size: 0.938rem;
  padding-bottom: 0.25rem;
}
.terms_and_condition .terms_and_condition_wrapper_textarea table {
  width: 100%;
  max-width: 100%;
}
.terms_and_condition .terms_and_condition_wrapper_textarea table thead tr th {
  background: #a8a8a8;
  border: 1px solid #a8a8a8;
  padding: 0.625rem;
  font-size: 0.875rem;
}
.terms_and_condition .terms_and_condition_wrapper_textarea table tbody tr td {
  border: 1px solid #a8a8a8;
  padding: 0.625rem;
  font-size: 0.938rem;
}
.terms_and_condition .terms_and_condition_wrapper_textarea table {
  margin-bottom: 2rem;
}
.terms_and_condition .terms_and_condition_wrapper_textarea .accordion-button {
  font-size: 0.938rem;
  color: #000000;
}
.terms_and_condition .terms_and_condition_wrapper_textarea .accordion-button:focus {
  box-shadow: none;
}
.terms_and_condition .terms_and_condition_wrapper_textarea .accordion-body {
  font-size: 0.938rem;
  line-height: 1.5rem;
}

@media only screen and (max-width: 1400px) {
  .main_hero_section .main_hero_section_wrapper_block h1,
  .main_hero_section .main_hero_section_wrapper_block h2,
  .main_hero_section .main_hero_section_wrapper_block h3,
  .main_hero_section .main_hero_section_wrapper_block h4,
  .main_hero_section .main_hero_section_wrapper_block h5,
  .main_hero_section .main_hero_section_wrapper_block h6 {
    font-size: 5.688rem;
    width: 460px;
  }
  .main_hero_section .main_hero_section_wrapper_block_box {
    left: 280px;
    top: 108px;
  }
  .overview_section {
    margin-top: 3rem;
  }
  .customer_section .customer_section_wrapper_block .row {
    --bs-gutter-x: 3rem;
  }
}
@media only screen and (max-width: 1200px) {
  .header .header_wrapper_menu ul {
    gap: 3.5rem;
  }
  .header .header_wrapper_menu ul li a {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 1200px) {
  .main_hero_section .main_hero_section_wrapper_block h1,
  .main_hero_section .main_hero_section_wrapper_block h2,
  .main_hero_section .main_hero_section_wrapper_block h3,
  .main_hero_section .main_hero_section_wrapper_block h4,
  .main_hero_section .main_hero_section_wrapper_block h5,
  .main_hero_section .main_hero_section_wrapper_block h6 {
    font-size: 4.5rem;
    width: 408px;
  }
  .main_hero_section .main_hero_section_wrapper_block_box {
    left: 212px;
    top: 108px;
    gap: 1rem;
  }
  .main_hero_section .main_hero_section_wrapper_block_box .image_wrapper {
    width: 288px;
  }
  .overview_section {
    margin-top: 0;
  }
  .customer_section .customer_section_wrapper_block .row {
    --bs-gutter-x: 2.5rem;
  }
  .customer_section .customer_section_wrapper_block .image_wrapper img {
    height: 548px;
  }
}
@media only screen and (max-width: 1200px) {
  .app_info_sec .app_info_sec_wrapper_block_content {
    gap: 2rem;
  }
  .app_info_sec .app_info_sec_wrapper_block_content .image_wrapper {
    width: 340px;
    height: 316px;
  }
  .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper {
    margin-top: 2.5rem;
  }
  .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h1, .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h2, .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h3, .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h4, .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h5, .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h6 {
    margin-bottom: 0.75rem;
  }
  .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper ul li {
    line-height: 1.3;
  }
  .app_info_sec .app_info_sec_wrapper_desc {
    top: 250px;
  }
  .app_info_sec .app_info_sec_wrapper_desc .detail {
    width: 60%;
  }
  .app_info_sec .app_info_sec_wrapper_desc .detail h1, .app_info_sec .app_info_sec_wrapper_desc .detail h2, .app_info_sec .app_info_sec_wrapper_desc .detail h3, .app_info_sec .app_info_sec_wrapper_desc .detail h4, .app_info_sec .app_info_sec_wrapper_desc .detail h5, .app_info_sec .app_info_sec_wrapper_desc .detail h6 {
    margin-bottom: 0.75rem;
  }
}
@media only screen and (max-width: 991px) {
  .header .header_wrapper_menu {
    position: relative;
    width: 60%;
    height: 100svh;
    position: fixed;
    top: 0;
    right: -60%;
    background-color: rgba(45, 45, 45, 0.6);
    backdrop-filter: blur(8px);
    transform: translateX(100%);
    transition: all 1s ease;
  }
  .header .header_wrapper_menu.open_menu {
    right: 0;
    transform: translateX(0);
    transition: all 1s ease;
  }
  .header .header_wrapper_menu ul {
    padding: 116px 8% 5rem 8%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .header .header_wrapper_menu ul li a {
    color: #ffffff;
  }
  .header .header_wrapper .menu_close {
    display: block;
    position: absolute;
    top: 28px;
    right: 8%;
  }
  .header .header_wrapper .menu_close button {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
  }
  .header .header_wrapper .menu_close button svg {
    width: 100%;
    height: 100%;
  }
  .header .header_wrapper .menu_btn {
    display: block;
  }
  .header .header_wrapper .menu_btn button {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
  }
  .header .header_wrapper .menu_btn button svg {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .main_hero_section .main_hero_section_wrapper_block {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .main_hero_section .main_hero_section_wrapper_block h1,
  .main_hero_section .main_hero_section_wrapper_block h2,
  .main_hero_section .main_hero_section_wrapper_block h3,
  .main_hero_section .main_hero_section_wrapper_block h4,
  .main_hero_section .main_hero_section_wrapper_block h5,
  .main_hero_section .main_hero_section_wrapper_block h6 {
    width: 100%;
    font-size: 3.5rem;
  }
  .main_hero_section .main_hero_section_wrapper_block_box {
    position: unset;
  }
  .overview_section .overview_section_wrapper h1,
  .overview_section .overview_section_wrapper h2,
  .overview_section .overview_section_wrapper h3,
  .overview_section .overview_section_wrapper h4,
  .overview_section .overview_section_wrapper h5,
  .overview_section .overview_section_wrapper h6 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.75rem;
  }
  .overview_section .overview_section_wrapper p {
    margin-bottom: 1.5rem;
  }
  .overview_section .overview_section_wrapper_block .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 2rem;
  }
  .overview_section .overview_section_wrapper_block .info_card {
    padding: 1.5rem;
  }
  .overview_section .overview_section_wrapper_block .info_card h1,
  .overview_section .overview_section_wrapper_block .info_card h2,
  .overview_section .overview_section_wrapper_block .info_card h3,
  .overview_section .overview_section_wrapper_block .info_card h4,
  .overview_section .overview_section_wrapper_block .info_card h5,
  .overview_section .overview_section_wrapper_block .info_card h6 {
    font-size: 1.875rem;
    line-height: 1.2;
  }
  .customer_section .customer_section_wrapper_block .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 3rem;
  }
  .customer_section .customer_section_wrapper_block h1,
  .customer_section .customer_section_wrapper_block h2,
  .customer_section .customer_section_wrapper_block h3,
  .customer_section .customer_section_wrapper_block h4,
  .customer_section .customer_section_wrapper_block h5,
  .customer_section .customer_section_wrapper_block h6 {
    font-size: 3rem;
  }
  .customer_section .customer_section_wrapper_block .right .image_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .customer_section .customer_section_wrapper_block .image_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .customer_section .customer_section_wrapper_block .image_wrapper img {
    height: 500px;
  }
  .customer_section .customer_section_wrapper_block .detail_info h1,
  .customer_section .customer_section_wrapper_block .detail_info h2,
  .customer_section .customer_section_wrapper_block .detail_info h3,
  .customer_section .customer_section_wrapper_block .detail_info h4,
  .customer_section .customer_section_wrapper_block .detail_info h5,
  .customer_section .customer_section_wrapper_block .detail_info h6 {
    font-size: 2.188rem;
    margin-bottom: 1rem;
  }
  .customer_section .customer_section_wrapper_block .detail_info p {
    margin-bottom: 1rem;
  }
  .subscription_block .row {
    --bs-gutter-x: 0;
  }
  .subscription_block h1,
  .subscription_block h2,
  .subscription_block h3,
  .subscription_block h3,
  .subscription_block h4,
  .subscription_block h5,
  .subscription_block h6 {
    font-size: 3rem;
  }
  .subscription_block .subscription_card.bg_primery h1,
  .subscription_block .subscription_card.bg_primery h2,
  .subscription_block .subscription_card.bg_primery h3,
  .subscription_block .subscription_card.bg_primery h3,
  .subscription_block .subscription_card.bg_primery h4,
  .subscription_block .subscription_card.bg_primery h5,
  .subscription_block .subscription_card.bg_primery h6 {
    color: #ffffff;
    margin-bottom: 1.5rem;
  }
  .subscription_block .subscription_card h1,
  .subscription_block .subscription_card h2,
  .subscription_block .subscription_card h3,
  .subscription_block .subscription_card h3,
  .subscription_block .subscription_card h4,
  .subscription_block .subscription_card h5,
  .subscription_block .subscription_card h6 {
    font-size: 1.5625rem;
  }
}
@media only screen and (max-width: 991px) {
  .app_info_sec .app_info_sec_wrapper_block_content {
    gap: 1.5rem;
  }
  .app_info_sec .app_info_sec_wrapper_block_content .image_wrapper {
    width: 300px;
    height: 280px;
  }
  .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper {
    margin-top: 2rem;
  }
  .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h1, .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h2, .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h3, .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h4, .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h5, .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h6 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper ul li {
    line-height: 1.3;
  }
  .app_info_sec .app_info_sec_wrapper_desc {
    top: 232px;
    padding: 2rem 8%;
  }
  .app_info_sec .app_info_sec_wrapper_desc .detail {
    width: 70%;
  }
  .app_info_sec .app_info_sec_wrapper_desc .detail h1, .app_info_sec .app_info_sec_wrapper_desc .detail h2, .app_info_sec .app_info_sec_wrapper_desc .detail h3, .app_info_sec .app_info_sec_wrapper_desc .detail h4, .app_info_sec .app_info_sec_wrapper_desc .detail h5, .app_info_sec .app_info_sec_wrapper_desc .detail h6 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}
@media only screen and (max-width: 991px) {
  .footer {
    margin-top: 88px;
  }
  .footer .footer_wrapper_block .footer_img_wrapper {
    width: 105px;
  }
  .footer .footer_wrapper_block .footer_policy_wrapper ul {
    gap: 2rem;
  }
  .footer .footer_wrapper .footer_copiright_wrapper {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .header .header_wrapper {
    padding: 0.5rem 0;
  }
  .header .header_wrapper_logo {
    width: 105px;
    height: auto;
  }
  .header.scroll .header_wrapper_logo {
    width: 88px;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .main_hero_section {
    margin-top: 3.5rem;
  }
  .main_hero_section .main_hero_section_wrapper_block h1,
  .main_hero_section .main_hero_section_wrapper_block h2,
  .main_hero_section .main_hero_section_wrapper_block h3,
  .main_hero_section .main_hero_section_wrapper_block h4,
  .main_hero_section .main_hero_section_wrapper_block h5,
  .main_hero_section .main_hero_section_wrapper_block h6 {
    font-size: 3rem;
  }
  .main_hero_section .main_hero_section_wrapper_block_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .main_hero_section .main_hero_section_wrapper_block_box .image_wrapper {
    width: 240px;
  }
  .main_hero_section .main_hero_section_wrapper_block_box p {
    width: 100%;
    margin-bottom: 0;
  }
  .overview_section .overview_section_wrapper h1,
  .overview_section .overview_section_wrapper h2,
  .overview_section .overview_section_wrapper h3,
  .overview_section .overview_section_wrapper h4,
  .overview_section .overview_section_wrapper h5,
  .overview_section .overview_section_wrapper h6 {
    font-size: 2.5rem;
  }
  .overview_section .overview_section_wrapper p {
    margin-bottom: 1rem;
  }
  .overview_section .overview_section_wrapper_block .row {
    --bs-gutter-y: 1.5rem;
  }
  .overview_section .overview_section_wrapper_block .info_card {
    padding: 1rem;
    border-radius: 1rem;
  }
  .overview_section .overview_section_wrapper_block .info_card h1,
  .overview_section .overview_section_wrapper_block .info_card h2,
  .overview_section .overview_section_wrapper_block .info_card h3,
  .overview_section .overview_section_wrapper_block .info_card h4,
  .overview_section .overview_section_wrapper_block .info_card h5,
  .overview_section .overview_section_wrapper_block .info_card h6 {
    font-size: 1.5625rem;
    margin-bottom: 0.75rem;
  }
  .customer_section .customer_section_wrapper_block.subscription_bottom h1,
  .customer_section .customer_section_wrapper_block.subscription_bottom h2,
  .customer_section .customer_section_wrapper_block.subscription_bottom h3,
  .customer_section .customer_section_wrapper_block.subscription_bottom h4,
  .customer_section .customer_section_wrapper_block.subscription_bottom h5,
  .customer_section .customer_section_wrapper_block.subscription_bottom h6 {
    margin-bottom: 2rem;
  }
  .customer_section .customer_section_wrapper_block .row {
    --bs-gutter-x: 2rem;
  }
  .customer_section .customer_section_wrapper_block h1,
  .customer_section .customer_section_wrapper_block h2,
  .customer_section .customer_section_wrapper_block h3,
  .customer_section .customer_section_wrapper_block h4,
  .customer_section .customer_section_wrapper_block h5,
  .customer_section .customer_section_wrapper_block h6 {
    font-size: 2.5rem;
  }
  .customer_section .customer_section_wrapper_block .image_wrapper img {
    height: 400px;
    border-radius: 1rem;
  }
  .customer_section .customer_section_wrapper_block .detail_info h1,
  .customer_section .customer_section_wrapper_block .detail_info h2,
  .customer_section .customer_section_wrapper_block .detail_info h3,
  .customer_section .customer_section_wrapper_block .detail_info h4,
  .customer_section .customer_section_wrapper_block .detail_info h5,
  .customer_section .customer_section_wrapper_block .detail_info h6 {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
  }
  .customer_section .customer_section_wrapper_block .detail_info p {
    margin-bottom: 0.5rem;
  }
  .customer_section .customer_section_wrapper_block .detail_info ul li {
    padding-bottom: 0.75rem;
    line-height: 1.3;
  }
  .subscription_block h1,
  .subscription_block h2,
  .subscription_block h3,
  .subscription_block h3,
  .subscription_block h4,
  .subscription_block h5,
  .subscription_block h6 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  .subscription_block .subscription_card {
    padding: 1rem 2rem;
  }
  .subscription_block .subscription_card h1,
  .subscription_block .subscription_card h2,
  .subscription_block .subscription_card h3,
  .subscription_block .subscription_card h3,
  .subscription_block .subscription_card h4,
  .subscription_block .subscription_card h5,
  .subscription_block .subscription_card h6 {
    font-size: 1.25rem;
  }
  .subscription_block .subscription_card table thead tr th {
    font-size: 1.25rem;
  }
  .subscription_block .subscription_card.bg_primery h1,
  .subscription_block .subscription_card.bg_primery h2,
  .subscription_block .subscription_card.bg_primery h3,
  .subscription_block .subscription_card.bg_primery h3,
  .subscription_block .subscription_card.bg_primery h4,
  .subscription_block .subscription_card.bg_primery h5,
  .subscription_block .subscription_card.bg_primery h6 {
    margin-bottom: 1rem;
  }
  .subscription_section_wrapper_slider .swiper-slide {
    width: 80%;
  }
  .subscription_section_wrapper_slider .swiper-slide-active {
    width: 80%;
    transition: all 0.3s ease-out;
  }
  .subscription_section_wrapper_slider .swiper-slide-prev {
    width: 80%;
    transform: scale(0.9);
    transition: all 0.3s ease-out;
  }
  .subscription_section_wrapper_slider .swiper-slide-next {
    width: 80%;
    transform: scale(0.9);
    transition: all 0.3s ease-out;
  }
  .subscription_section_wrapper_slider .swiper-button-next, .subscription_section_wrapper_slider .swiper-button-prev {
    width: 3.5rem;
    height: 3.5rem;
    border: 3px solid #206983;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .subscription_section_wrapper_slider .swiper-button-next svg, .subscription_section_wrapper_slider .swiper-button-prev svg {
    width: 100%;
    height: 100%;
    padding: 0.75rem;
  }
  .subscription_section_wrapper_slider .swiper-button-next svg {
    rotate: 180deg;
  }
}
@media only screen and (max-width: 767px) {
  .app_info_sec .app_info_sec_wrapper_block_content {
    padding-bottom: 2.5rem;
    flex-direction: column;
  }
  .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper {
    margin-top: 0;
  }
  .app_info_sec .app_info_sec_wrapper_desc {
    position: unset;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    margin-top: 0;
  }
  .footer .footer_wrapper_block .footer_img_wrapper {
    width: 88px;
  }
  .footer .footer_wrapper_block .footer_policy_wrapper {
    margin: 1rem 0;
  }
  .footer .footer_wrapper_block .footer_policy_wrapper ul li a {
    font-size: 1rem;
    line-height: 1.2;
  }
  .footer .footer_wrapper_block .footer_icon_wrapper {
    gap: 1.125rem;
  }
  .footer .footer_wrapper_block .footer_icon_wrapper a {
    width: 1.5625rem;
    height: 1.5625rem;
  }
  .footer .footer_wrapper .footer_copiright_wrapper p {
    font-size: 1rem;
  }
  .footer .footer_wrapper .footer_copiright_wrapper_support {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer .footer_wrapper .footer_copiright_wrapper_support a {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 575px) {
  .header .header_wrapper_menu {
    width: 100%;
    right: -100%;
    background-color: #ffffff;
    transform: translateX(100%);
  }
  .header .header_wrapper_menu ul {
    padding: 116px 8% 5rem 8%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .header .header_wrapper_menu ul li a {
    color: #000000;
    font-size: 1rem;
  }
  .header .header_wrapper .menu_close {
    display: block;
    position: absolute;
    top: 28px;
    right: 4%;
  }
  .header .header_wrapper .menu_close button {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
  }
  .header .header_wrapper .menu_close button svg path {
    fill: #000;
  }
}
@media only screen and (max-width: 575px) {
  .main_hero_section .main_hero_section_wrapper_block h1,
  .main_hero_section .main_hero_section_wrapper_block h2,
  .main_hero_section .main_hero_section_wrapper_block h3,
  .main_hero_section .main_hero_section_wrapper_block h4,
  .main_hero_section .main_hero_section_wrapper_block h5,
  .main_hero_section .main_hero_section_wrapper_block h6 {
    font-size: 2.188rem;
  }
  .main_hero_section .main_hero_section_wrapper_block p {
    font-size: 1rem;
  }
  .main_hero_section .main_hero_section_wrapper_block_box {
    align-items: center;
  }
  .main_hero_section .main_hero_section_wrapper_block_box .image_wrapper {
    width: 216px;
  }
  .overview_section .overview_section_wrapper h1,
  .overview_section .overview_section_wrapper h2,
  .overview_section .overview_section_wrapper h3,
  .overview_section .overview_section_wrapper h4,
  .overview_section .overview_section_wrapper h5,
  .overview_section .overview_section_wrapper h6 {
    font-size: 2rem;
  }
  .overview_section .overview_section_wrapper p {
    font-size: 1rem;
  }
  .overview_section .overview_section_wrapper_block .row {
    --bs-gutter-y: 1rem;
  }
  .overview_section .overview_section_wrapper_block .info_card h1,
  .overview_section .overview_section_wrapper_block .info_card h2,
  .overview_section .overview_section_wrapper_block .info_card h3,
  .overview_section .overview_section_wrapper_block .info_card h4,
  .overview_section .overview_section_wrapper_block .info_card h5,
  .overview_section .overview_section_wrapper_block .info_card h6 {
    font-size: 1.25rem;
  }
  .overview_section .overview_section_wrapper_block .info_card p {
    font-size: 1rem;
    line-height: 1.3;
  }
  .customer_section .customer_section_wrapper_block.subscription_bottom h1,
  .customer_section .customer_section_wrapper_block.subscription_bottom h2,
  .customer_section .customer_section_wrapper_block.subscription_bottom h3,
  .customer_section .customer_section_wrapper_block.subscription_bottom h4,
  .customer_section .customer_section_wrapper_block.subscription_bottom h5,
  .customer_section .customer_section_wrapper_block.subscription_bottom h6 {
    margin-bottom: 1.5rem;
  }
  .customer_section .customer_section_wrapper_block h1,
  .customer_section .customer_section_wrapper_block h2,
  .customer_section .customer_section_wrapper_block h3,
  .customer_section .customer_section_wrapper_block h4,
  .customer_section .customer_section_wrapper_block h5,
  .customer_section .customer_section_wrapper_block h6 {
    font-size: 2rem;
  }
  .customer_section .customer_section_wrapper_block .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 1.5rem;
  }
  .customer_section .customer_section_wrapper_block .image_wrapper img {
    height: 340px;
  }
  .customer_section .customer_section_wrapper_block .detail_info h1,
  .customer_section .customer_section_wrapper_block .detail_info h2,
  .customer_section .customer_section_wrapper_block .detail_info h3,
  .customer_section .customer_section_wrapper_block .detail_info h4,
  .customer_section .customer_section_wrapper_block .detail_info h5,
  .customer_section .customer_section_wrapper_block .detail_info h6 {
    font-size: 1.5625rem;
  }
  .customer_section .customer_section_wrapper_block .detail_info p {
    font-size: 1rem;
    line-height: 1.3;
  }
  .customer_section .customer_section_wrapper_block .detail_info ul p {
    font-size: 1rem;
  }
  .customer_section .customer_section_wrapper_block .detail_info ul li {
    font-size: 1rem;
  }
  .subscription_block h1,
  .subscription_block h2,
  .subscription_block h3,
  .subscription_block h3,
  .subscription_block h4,
  .subscription_block h5,
  .subscription_block h6 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .subscription_block .subscription_card {
    padding: 1rem 1.25rem;
  }
  .subscription_block .subscription_card h1,
  .subscription_block .subscription_card h2,
  .subscription_block .subscription_card h3,
  .subscription_block .subscription_card h3,
  .subscription_block .subscription_card h4,
  .subscription_block .subscription_card h5,
  .subscription_block .subscription_card h6 {
    font-size: 1.125rem;
  }
  .subscription_block .subscription_card table thead {
    margin-bottom: 1rem;
  }
  .subscription_block .subscription_card table thead tr th {
    font-size: 1.125rem;
  }
  .subscription_block .subscription_card table thead:nth-child(2) {
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .subscription_block .subscription_card table thead:nth-child(2) tr {
    justify-content: space-evenly;
  }
  .subscription_block .subscription_card table thead:nth-child(2) tr th {
    font-size: 1.125rem;
  }
  .subscription_block .subscription_card table thead:nth-child(2)::after {
    left: 55%;
  }
  .subscription_block .subscription_card table tbody tr td {
    font-size: 1rem;
    line-height: 1.3;
  }
  .subscription_block .subscription_card .bottom_table_data p {
    font-size: 1rem;
  }
  .subscription_block .subscription_card .bottom_table_data p:last-child {
    font-size: 0.75rem;
  }
  .subscription_section_wrapper_slider {
    padding-bottom: 5rem;
  }
  .subscription_section_wrapper_slider .swiper-slide-prev {
    transform: scale(0.95);
  }
  .subscription_section_wrapper_slider .swiper-slide-next {
    transform: scale(0.95);
  }
  .subscription_section_wrapper_slider .swiper-button-next, .subscription_section_wrapper_slider .swiper-button-prev {
    width: 2.5rem;
    height: 2.5rem;
  }
  .subscription_section_wrapper_slider .swiper-button-next svg, .subscription_section_wrapper_slider .swiper-button-prev svg {
    padding: 0.5rem;
  }
  .subscription_section_wrapper_slider_button {
    gap: 1.25rem;
  }
  .download_logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .download_logo_wrapper {
    width: 160px;
    height: auto;
  }
}
@media only screen and (max-width: 575px) {
  .app_info_sec .app_info_sec_wrapper_block_content {
    padding-bottom: 2rem;
  }
  .app_info_sec .app_info_sec_wrapper_block_content .image_wrapper {
    width: 270px;
    height: 232px;
  }
  .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h1, .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h2, .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h3, .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h4, .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h5, .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper h6 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper ul li {
    font-size: 1rem;
    padding-bottom: 0.25rem;
  }
  .app_info_sec .app_info_sec_wrapper_desc .detail {
    width: 100%;
  }
  .app_info_sec .app_info_sec_wrapper_desc .detail h1, .app_info_sec .app_info_sec_wrapper_desc .detail h2, .app_info_sec .app_info_sec_wrapper_desc .detail h3, .app_info_sec .app_info_sec_wrapper_desc .detail h4, .app_info_sec .app_info_sec_wrapper_desc .detail h5, .app_info_sec .app_info_sec_wrapper_desc .detail h6 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  .app_info_sec .app_info_sec_wrapper_desc .detail p {
    font-size: 1rem;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 575px) {
  .footer .footer_wrapper .footer_policy_wrapper ul {
    flex-direction: column;
    gap: 0.125rem;
  }
}
@media only screen and (max-width: 390px) {
  .customer_section .customer_section_wrapper_block .image_wrapper img {
    height: 300px;
  }
}
@media only screen and (max-width: 390px) {
  .subscription_section_wrapper_slider {
    padding-bottom: 3.5rem;
  }
  .subscription_section_wrapper_slider .swiper-slide {
    width: 92%;
  }
  .subscription_section_wrapper_slider .swiper-slide-active {
    width: 92%;
  }
  .subscription_section_wrapper_slider .swiper-slide-prev {
    width: 92%;
  }
  .subscription_section_wrapper_slider .swiper-slide-next {
    width: 92%;
  }
}
@media only screen and (max-width: 390px) {
  .app_info_sec .app_info_sec_wrapper_block_content {
    align-items: center;
  }
  .app_info_sec .app_info_sec_wrapper_block_content .image_wrapper {
    width: 240px;
    height: 202px;
  }
  .app_info_sec .app_info_sec_wrapper_block_content .detail_wrapper {
    width: 100%;
  }
}
.commonX {
  padding-left: 8%;
  padding-right: 8%;
}

.commonY {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .commonY {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 575px) {
  .commonY {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.right {
  flex-direction: row-reverse;
}

.margin_bottom {
  margin-bottom: 5rem;
}/*# sourceMappingURL=main.css.map */