.inputStyle, .select > select, input[list],
input[type=text],
input[type=password],
input[type=textarea],
textarea,
input[type=date],
input[type=month],
input[type=year],
input[type=email] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Lexend", "Kanit", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  line-height: normal;
  position: relative;
  width: 100%;
  outline: 0;
  border: 0;
  background-color: rgb(255, 255, 255);
  color: var(--colorTypoPlaceholder);
  height: 48px;
  line-height: 48px;
  padding: 8px 16px;
  overflow: hidden;
  border: 1px solid var(--colorPrimaryOutline);
  overflow: hidden;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  font-size: 0.875rem;
  line-height: normal;
  font-weight: 400;
}
@media (min-width: 768px) {
  .inputStyle, .select > select, input[list],
  input[type=text],
  input[type=password],
  input[type=textarea],
  textarea,
  input[type=date],
  input[type=month],
  input[type=year],
  input[type=email] {
    font-size: 1rem;
  }
}
.inputStyle::placeholder, .select > select::placeholder, input[list]::placeholder,
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=textarea]::placeholder,
textarea::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=year]::placeholder,
input[type=email]::placeholder, .inputStyle:-ms-input-placeholder, .select > select:-ms-input-placeholder, input[list]:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=textarea]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type=date]:-ms-input-placeholder,
input[type=month]:-ms-input-placeholder,
input[type=year]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder, .inputStyle::-ms-input-placeholder, .select > select::-ms-input-placeholder, input[list]::-ms-input-placeholder,
input[type=text]::-ms-input-placeholder,
input[type=password]::-ms-input-placeholder,
input[type=textarea]::-ms-input-placeholder,
textarea::-ms-input-placeholder,
input[type=date]::-ms-input-placeholder,
input[type=month]::-ms-input-placeholder,
input[type=year]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder {
  color: var(--colorTypoPlaceholder);
  opacity: 1;
}

input[list],
input[type=text],
input[type=password],
input[type=textarea],
textarea,
input[type=date],
input[type=month],
input[type=year],
input[type=email] {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  resize: none;
}
input[list]:disabled,
input[type=text]:disabled,
input[type=password]:disabled,
input[type=textarea]:disabled,
textarea:disabled,
input[type=date]:disabled,
input[type=month]:disabled,
input[type=year]:disabled,
input[type=email]:disabled {
  opacity: 0.6;
}
input[list]:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=textarea]:focus,
textarea:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=year]:focus,
input[type=email]:focus {
  border-color: var(--colorPrimary);
}

.control {
  display: block;
  position: relative;
  padding: 4px 14px;
  cursor: pointer;
  padding-left: 30px;
}
@media (min-width: 1024px) {
  .control {
    padding-left: 30px;
  }
}
.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .control input {
    top: 70%;
  }
}

.control--checkbox .control__indicator {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  height: 16px;
  width: 16px;
  background: url(../img/ui/form/ico-check.svg) center center no-repeat no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: 0px;
}
.control--checkbox input:checked ~ .control__indicator {
  background-image: url(../img/ui/form/ico-checked.svg);
}
.control--checkbox input:disabled ~ .control__indicator {
  opacity: 0.6;
}
.control--checkbox input:disabled ~ .control__indicator:after {
  opacity: 0.6;
}

.control--radio {
  padding-left: 30px;
  color: var(--colorTypoPlaceholder);
}
.control--radio .control__indicator {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  background-color: rgb(255, 255, 255);
  border: 1px solid var(--colorPrimaryOutline);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: 0;
}
.control--radio input:checked ~ .control__indicator {
  border: 1px solid var(--colorPrimary);
  background-color: var(--colorPrimaryLight);
}
.control--radio input:checked ~ .control__indicator:after {
  display: block;
}
.control--radio .control__indicator:after {
  content: "";
  position: absolute;
  display: none;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: var(--colorPrimary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.control--radio input:disabled ~ .control__indicator {
  opacity: 0.6;
}
.control--radio input:disabled ~ .control__indicator:after {
  opacity: 0.6;
}

.select {
  position: relative;
  display: inline-block;
  width: 100%;
}
.select > select {
  display: inline-block;
  cursor: pointer;
  border: 1px solid var(--colorPrimaryOutline);
  background-color: rgb(255, 255, 255);
  padding-right: 48px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  line-height: normal;
}
.select > select::-ms-expand {
  display: none;
}
.select > select:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.select:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 0px;
  content: "";
  width: 48px;
  height: 100%;
  background: url(../img/ui/form/ico-arrow-select.svg) center center no-repeat;
}
@media (min-width: 1024px) {
  .select:after {
    width: 48px;
  }
}

.datalist {
  line-height: 33px;
}

datalist {
  display: none;
}

/* specifically hide the arrow on focus */
input::-webkit-calendar-picker-indicator {
  display: none;
  opacity: 0;
}

textarea {
  height: 120px;
  padding: 8px 16px;
  border-bottom: 1px solid var(--colorPrimaryOutline);
  line-height: normal;
  overflow: scroll;
}

input[type=date],
input[type=month],
input[type=year] {
  text-align: left;
  padding: 8px 36px 9px 16px;
}
input[type=date]:before,
input[type=month]:before,
input[type=year]:before {
  content: "";
  display: block;
  z-index: 0;
  right: 16px;
  width: 32px;
  height: 100%;
  background: url(../img/ui/form/ico-calendar.svg) center center no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 0;
}
input[type=date]::-webkit-calendar-picker-indicator,
input[type=month]::-webkit-calendar-picker-indicator,
input[type=year]::-webkit-calendar-picker-indicator {
  display: block;
  opacity: 1;
  width: 32px;
  height: 100%;
  background: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 1;
  right: 0;
}
input[type=date]::-webkit-date-and-time-value,
input[type=month]::-webkit-date-and-time-value,
input[type=year]::-webkit-date-and-time-value {
  text-align: left;
}

input[type=password] {
  padding-right: 36px;
}

.controlPass {
  position: relative;
}
.controlPass .btnshowPass {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 7px;
  color: var(--colorGray700);
  width: 48px;
  height: 100%;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/ui/form/ico-invisible.svg) center center no-repeat;
}
@media (min-width: 1024px) {
  .controlPass .btnshowPass {
    width: 48px;
  }
}
.controlPass .btnshowPass:hover {
  color: var(--colorPrimary);
}
.controlPass .btnshowPass.show {
  background-image: url(../img/ui/form/ico-visibility.svg);
}

.checkboxPDPA {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.checkboxPDPA .control {
  line-height: 28px;
}
.checkboxPDPA .control input {
  top: 50%;
}
.checkboxPDPA .bText a:hover {
  color: var(--colorSecondary);
}

.bCaptcha {
  margin-bottom: 25px;
}
.bCaptcha > img {
  width: 100%;
  max-width: 300px;
  height: auto;
}
@media (min-width: 1024px) {
  .bCaptcha > img {
    width: 360px;
  }
}

.control-group [data-content]:after {
  content: attr(data-content);
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 20px;
  color: var(--colorSecondary);
}
.control-group [data-content] input {
  padding-right: 20%;
}
.control-group .floating-label {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  display: block;
  position: absolute;
  opacity: 0;
  top: -10px;
  left: 0px;
  font-size: 0.625rem;
  line-height: normal;
  color: var(--colorGray50);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .control-group .floating-label {
    font-size: 0.75rem;
  }
}
.control-group .form-control:placeholder-shown + .floating-label {
  visibility: hidden;
  z-index: -1;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
}
.control-group .form-control:not(:placeholder-shown) + .floating-label,
.control-group .form-control:focus:not(:placeholder-shown) + .floating-label {
  visibility: visible;
  z-index: 1;
  opacity: 1;
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
}

.bForm {
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
  grid-row-gap: 24px;
}
.bForm > *:last-child {
  margin-bottom: 0;
}
.bForm .bRow {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .bForm .bRow {
    flex-direction: row;
    gap: 24px 16px;
  }
}
.bForm .control-group {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.bForm .control-group [class*=tTitle] {
  font-size: 0.625rem;
  line-height: normal;
  font-weight: 500;
  color: var(--colorGray50);
}
@media (min-width: 768px) {
  .bForm .control-group [class*=tTitle] {
    font-size: 0.75rem;
  }
}
.bForm .control-group [class*=tTitle] span {
  display: inline;
}
.bForm .control-group.validate [class*=tTitle]:after {
  content: "*";
  color: #a2191f;
}
.bForm .control-group.error label.tError {
  display: flex;
}
.bForm .control-group.error label.tError:before {
  display: none;
}
.bForm .control-group.pdpa p {
  color: var(--colorTypoSubtext2);
  font-weight: 300;
  font-size: 0.75rem;
  line-height: normal;
}
@media (min-width: 768px) {
  .bForm .control-group.pdpa p {
    font-size: 0.875rem;
  }
}
.bForm .control-group.pdpa p a {
  color: var(--colorTypoSubtext2);
  font-weight: bold;
}
.bForm .control-group > p {
  font-size: 0.625rem;
  line-height: normal;
  color: var(--colorGray300);
}
@media (min-width: 768px) {
  .bForm .control-group > p {
    font-size: 0.75rem;
  }
}
.bForm .tError {
  display: none;
  font-size: 0.625rem;
  line-height: normal;
  color: #f85b56;
  font-weight: 300;
  display: none;
  align-items: center;
  column-gap: 8px;
}
@media (min-width: 768px) {
  .bForm .tError {
    font-size: 0.75rem;
  }
}
.bForm .tError:before {
  content: "";
  display: block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background: url(../img/ui/form/ico-error.svg) center center no-repeat;
  background-size: contain;
}
.bForm.error > .tError {
  display: flex;
}
.bForm .bBtn {
  width: 100%;
  display: flex;
  gap: 16px;
}
.bForm .bBtn .btn {
  width: 100%;
}

.splide__pagination {
  bottom: 24px;
  width: 100%;
  column-gap: 12px;
  flex-wrap: nowrap;
  margin-inline: auto;
  width: calc(100% - 48px);
}
@media (min-width: 768px) {
  .splide__pagination {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  .splide__pagination {
    max-width: 1224px;
  }
}
.splide__pagination li {
  margin: 0;
  width: 8px;
  max-width: 8px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}
.splide__pagination .splide__pagination__page {
  width: 100%;
  height: 8px;
  margin: 0;
  background: var(--ci-gray20);
  box-shadow: none;
  border: none;
  border-radius: 0;
  opacity: 1;
  box-sizing: border-box;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.splide__pagination .splide__pagination__page.is-active {
  background: var(--colorPrimary);
  opacity: 1;
  transform: scale(1);
}
.splide__pagination .splide__pagination__page:hover {
  background: var(--colorPrimary);
}

.splide__progress {
  background: var(--colorPrimary);
  position: absolute;
  width: 100%;
  bottom: 0px;
}

.splide__progress__bar {
  height: 2px;
  background-color: var(--colorPrimary);
}

.splide__arrows {
  position: absolute;
  bottom: inherit;
  top: 50%;
  left: 0;
  width: 100%;
}
.splide__arrows .splide__arrow {
  opacity: 1;
  background: center center no-repeat;
  background-size: auto 100%;
  width: 44px;
  height: 44px;
  border-radius: inherit;
  zoom: 2;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.splide__arrows .splide__arrow svg {
  display: none;
}
.splide__arrows .splide__arrow:hover {
  opacity: 1;
}
.splide__arrows .splide__arrow:disabled {
  opacity: 0.4;
}
.splide__arrows .splide__arrow.splide__arrow--prev {
  left: 1%;
  background-image: url(../img/ui/slide/ico-arrow-slide-l.svg);
}
.splide__arrows .splide__arrow.splide__arrow--next {
  right: 1%;
  background-image: url(../img/ui/slide/ico-arrow-slide-r.svg);
}
.splide .bNumber {
  display: table;
  margin: 12px auto 0;
  font-weight: bold;
  background-color: var(--colorPrimary);
  padding: 0 12px;
  line-height: 30px;
  color: #ffffff;
  width: fit-content;
}
.splide .bNumber span {
  display: inline;
}

.splide__sr {
  display: none;
}

.splide__progress {
  display: none;
}

.jBox-wrapper {
  z-index: 99999 !important;
}

.jBox-overlay {
  z-index: 99998 !important;
  background-color: rgba(0, 0, 0, 0.7);
}

.jBox-Modal .jBox-container {
  overflow: hidden;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  background-color: transparent;
}

.jBox-Modal .jBox-container,
.jBox-Modal.jBox-closeButton-box:before {
  box-shadow: none;
}

.jBox-Modal .jBox-content {
  padding: 0;
  margin: 0 auto;
}

.jBox-closeButton-box .jBox-closeButton {
  width: 30px;
  height: 30px;
  background: url(../img/ui/form/ico-close.svg) center center no-repeat;
  background-size: 70% auto;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  right: 0px;
  top: 0px;
  overflow: hidden;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.jBox-closeButton-box .jBox-closeButton:hover {
  background-color: var(--colorSecondary);
}
.jBox-closeButton-box .jBox-closeButton svg {
  display: none;
}

.bModal {
  display: none;
  overflow: hidden;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  padding: 0px;
  background-color: transparent;
  margin: 0px;
  -webkit-box-shadow: 0px 0px 10px rgba(16, 50, 90, 0.2);
  -moz-box-shadow: 0px 0px 10px rgba(16, 50, 90, 0.2);
  box-shadow: 0px 0px 10px rgba(16, 50, 90, 0.2);
}

.bCard {
  padding: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
  padding: 24px 16px;
  overflow: hidden;
  border-radius: 48px;
  -webkit-border-radius: 48px;
  -moz-border-radius: 48px;
  -ms-border-radius: 48px;
  -o-border-radius: 48px;
}
@media (min-width: 768px) {
  .bCard {
    padding: 32px;
  }
}
.bCard img {
  display: block;
  width: 100%;
  height: auto;
}
.bCard .bTitle {
  margin-bottom: 16px;
}
.bCard .bTitle h3 {
  font-size: 4.5rem;
  line-height: normal;
  color: var(--colorPrimary);
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .bCard .bTitle h3 {
    font-size: 2.75rem;
    line-height: normal;
  }
}
.bCard .bText {
  margin-bottom: 24px;
  text-align: center;
}
.bCard .bText p {
  font-size: 0.875rem;
  line-height: normal;
}
@media (min-width: 768px) {
  .bCard .bText p {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .bCard .bText p {
    font-size: 1rem;
    line-height: normal;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .bCard .bText p {
    font-size: 1.125rem;
  }
}

.bModal.VDO .bYoutube {
  width: 70vw;
  padding-top: 56.25%;
}
@media (min-width: 767px) and (max-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  .bModal.VDO .bYoutube {
    width: 80vw;
  }
}
@media (max-width: 767px) {
  .bModal.VDO .bYoutube {
    width: 90vw;
    padding: 0 20px;
    padding-top: 56.25%;
  }
}
.bModal.VDO iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.bModal.Image .bPic {
  width: 90vw;
}
@media (min-width: 768px) {
  .bModal.Image .bPic {
    width: 80vw;
  }
}
.bModal.Image a {
  color: #ffffff;
  margin-top: 16px;
}
.bModal.Image img {
  height: auto;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .bModal.Image img {
    width: auto;
    max-height: 80vh;
  }
}

#pPricing {
  margin-inline: auto;
  width: calc(100% - 48px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  #pPricing {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  #pPricing {
    max-width: 1224px;
  }
}
@media (min-width: 1024px) {
  #pPricing {
    gap: 48px;
  }
}
#pPricing > .bTitle h1,
#pPricing > .bTitle h2 {
  font-size: 2rem;
  line-height: normal;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  #pPricing > .bTitle h1,
  #pPricing > .bTitle h2 {
    font-size: 2.5rem;
  }
}
#pPricing .bPricing {
  display: flex;
  gap: 24px;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 1024px) {
  #pPricing .bPricing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    align-items: flex-end;
    padding: 0;
    overflow-x: inherit;
  }
}
@media (min-width: 767px) and (max-width: 1023px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  #pPricing .bPricing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }
}
@media (min-width: 1023px) and (max-width: 1365px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  #pPricing .bPricing {
    zoom: 0.8;
  }
}
#pPricing .bPricing article {
  box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
  overflow: hidden;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border: 1px solid var(--colorPrimaryOutline);
  background-color: var(--colorWhite);
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  #pPricing .bPricing article {
    flex-shrink: 1;
    width: 100%;
  }
}
#pPricing .bPricing article > h4 {
  font-size: 1.125rem;
  line-height: normal;
  color: var(--colorWhite);
  padding: 12px 36px;
  background-color: var(--colorBlack);
  text-align: center;
}
@media (min-width: 768px) {
  #pPricing .bPricing article > h4 {
    font-size: 1.25rem;
  }
}
#pPricing .bPricing article .bDetails {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
#pPricing .bPricing article .bDetails .bTitle {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 4.8em;
}
@media (min-width: 767px) and (max-width: 1023px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  #pPricing .bPricing article .bDetails .bTitle {
    min-height: 4.8em;
  }
}
#pPricing .bPricing article .bDetails .bTitle h3 {
  font-size: 1.375rem;
  line-height: normal;
  color: var(--colorTypoBasetext);
}
@media (min-width: 768px) {
  #pPricing .bPricing article .bDetails .bTitle h3 {
    font-size: 1.5rem;
  }
}
#pPricing .bPricing article .bDetails .bTitle p {
  color: var(--colorTypoIcon);
  font-size: 0.75rem;
  line-height: normal;
  font-weight: 300;
}
@media (min-width: 768px) {
  #pPricing .bPricing article .bDetails .bTitle p {
    font-size: 0.875rem;
  }
}
#pPricing .bPricing article .bDetails .bTitle p span {
  color: var(--colorTypoBasetext);
  font-size: 1.75rem;
  line-height: normal;
  font-weight: normal;
}
@media (min-width: 768px) {
  #pPricing .bPricing article .bDetails .bTitle p span {
    font-size: 2rem;
  }
}
#pPricing .bPricing article .bDetails .bBenefit {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
#pPricing .bPricing article .bDetails .bBenefit .bBtn {
  width: 100%;
}
#pPricing .bPricing article .bDetails .bBenefit .bBtn .btn {
  height: 42px;
  width: 100%;
}
#pPricing .bPricing article .bDetails .bBenefit ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#pPricing .bPricing article .bDetails .bBenefit ul li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.75rem;
  line-height: normal;
  font-weight: 300;
  color: var(--colorTypoSubtext2);
}
@media (min-width: 768px) {
  #pPricing .bPricing article .bDetails .bBenefit ul li {
    font-size: 0.875rem;
  }
}
#pPricing .bPricing article .bDetails .bBenefit ul li:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-mask: url("../img/ci/icon/ico-check.svg") center center no-repeat;
  mask: url("../img/ci/icon/ico-check.svg") center center no-repeat;
  mask-size: contain;
  background-color: var(--colorTypoBasetext);
}
#pPricing .bPricing article[data-color][data-color=green] .bTitle h3 {
  color: var(--ci-green90);
}
#pPricing .bPricing article[data-color][data-color=green] .bTitle p span {
  color: var(--ci-green90);
}
#pPricing .bPricing article[data-color][data-color=green] .bBenefit .bBtn .btn {
  background-color: var(--ci-green70);
  border-color: var(--colorSubSecondaryOutline);
}
#pPricing .bPricing article[data-color][data-color=green] .bBenefit .bBtn .btn:hover {
  background-color: var(--colorSubSecondaryOutline);
  color: var(--ci-green90);
}
#pPricing .bPricing article[data-color][data-color=purple] .bTitle h3 {
  color: var(--ci-purple90);
}
#pPricing .bPricing article[data-color][data-color=purple] .bTitle p span {
  color: var(--ci-purple90);
}
#pPricing .bPricing article[data-color][data-color=purple] .bBenefit .bBtn .btn {
  background-color: var(--colorSecondary);
  border-color: var(--colorSecondaryLight);
}
#pPricing .bPricing article[data-color][data-color=purple] .bBenefit .bBtn .btn:hover {
  background-color: var(--colorSecondaryLight);
  color: var(--ci-purple70);
}
#pPricing .bPricing article[data-color][data-color=pink] .bTitle h3 {
  color: var(--ci-pink90);
}
#pPricing .bPricing article[data-color][data-color=pink] .bTitle p span {
  color: var(--ci-pink90);
}
#pPricing .bPricing article[data-color][data-color=black] .bBenefit .bBtn .btn {
  background-color: var(--colorBlack);
  border-color: var(--colorGray300);
}
#pPricing .bPricing article[data-color][data-color=black] .bBenefit .bBtn .btn:hover {
  background-color: var(--colorGray300);
  border-color: var(--colorGray300);
  color: var(--colorBlack);
}
#pPricing .bPricing article[data-most][data-most=true] {
  border: 3px solid var(--colorPrimaryOutline);
}
#pPricing .bPricing article[data-most][data-most=true] > h4 {
  display: block;
}
#pPricing .bPricing article[data-most][data-most=true][data-color=green] {
  border-color: var(--ci-green70);
}
#pPricing .bPricing article[data-most][data-most=true][data-color=green] > h4 {
  background-color: var(--ci-green70);
}
#pPricing .bPricing article[data-most][data-most=true][data-color=purple] {
  border-color: var(--colorSecondary);
}
#pPricing .bPricing article[data-most][data-most=true][data-color=purple] > h4 {
  background-color: var(--colorSecondary);
}
#pPricing .bPricing article[data-most][data-most=true][data-color=pink] {
  border-color: var(--colorPrimary);
}
#pPricing .bPricing article[data-most][data-most=true][data-color=pink] > h4 {
  background-color: var(--colorPrimary);
}
#pPricing .bPricing article[data-most][data-most=true][data-color=black] {
  border-color: var(--colorBlack);
}
#pPricing .bPricing article[data-most][data-most=true][data-color=black] > h4 {
  background-color: var(--colorBlack);
}
#pPricing .bPricing article[data-most][data-most=false] {
  border: 1px solid var(--colorPrimaryOutline);
}
#pPricing .bPricing article[data-most][data-most=false] > h4 {
  display: none;
}
#pPricing .bRemark {
  width: 100%;
}
#pPricing .bRemark .bDetails {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--colorTypoIcon);
  font-weight: 300;
  font-size: 0.625rem;
  line-height: normal;
}
@media (min-width: 768px) {
  #pPricing .bRemark .bDetails {
    font-size: 0.75rem;
  }
}
#pPricing .bRemark .bDetails h4 {
  font-weight: bold;
}
#pPricing .bRemark .bDetails ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#pBrand {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 32px;
  padding: 32px 0;
}
@media (min-width: 1024px) {
  #pBrand {
    padding: 64px 0;
    gap: 48px;
  }
}
#pBrand > .bTitle {
  margin-inline: auto;
  width: calc(100% - 48px);
}
@media (min-width: 768px) {
  #pBrand > .bTitle {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  #pBrand > .bTitle {
    max-width: 1224px;
  }
}
#pBrand > .bTitle h1,
#pBrand > .bTitle h2 {
  font-size: 1.125rem;
  line-height: normal;
  font-weight: 300;
  text-align: center;
}
@media (min-width: 768px) {
  #pBrand > .bTitle h1,
  #pBrand > .bTitle h2 {
    font-size: 1.25rem;
  }
}
#pBrand .bBrand {
  margin-inline: auto;
  width: calc(100% - 48px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media (min-width: 768px) {
  #pBrand .bBrand {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  #pBrand .bBrand {
    max-width: 1224px;
  }
}
@media (min-width: 1024px) {
  #pBrand .bBrand {
    gap: 32px;
  }
}
#pBrand .bBrand a {
  display: block;
}
#pBrand .bBrand img {
  zoom: 0.5;
  display: block;
  object-fit: contain;
  width: auto;
}

@media (min-width: 1024px) {
  section#pContactus:before {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    background: url(../img/ci/contact/bg-contactform.svg) center center no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
}
section#pContactus .bContactMain {
  margin-inline: auto;
  width: calc(100% - 48px);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 48px;
  grid-row-gap: 48px;
}
@media (min-width: 768px) {
  section#pContactus .bContactMain {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  section#pContactus .bContactMain {
    max-width: 1224px;
  }
}
@media (min-width: 1024px) {
  section#pContactus .bContactMain {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}
@media (min-width: 1023px) and (max-width: 1365px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  section#pContactus .bContactMain {
    zoom: 0.9;
  }
}
section#pContactus .bContactMain .bLeft {
  position: relative;
}
section#pContactus .bContactMain .bLeft .bCompanyInfo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 24px;
}
@media (min-width: 1024px) {
  section#pContactus .bContactMain .bLeft .bCompanyInfo {
    max-width: 500px;
    align-items: flex-start;
    gap: 40px;
  }
}
@media (min-width: 1023px) and (max-width: 1365px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  section#pContactus .bContactMain .bLeft .bCompanyInfo {
    max-width: 450px;
  }
}
section#pContactus .bContactMain .bLeft .bCompanyInfo > h1, section#pContactus .bContactMain .bLeft .bCompanyInfo > h2 {
  width: 100%;
  color: var(--colorPrimary);
  font-size: 2rem;
  line-height: normal;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--colorPrimaryOutline);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
@media (min-width: 768px) {
  section#pContactus .bContactMain .bLeft .bCompanyInfo > h1, section#pContactus .bContactMain .bLeft .bCompanyInfo > h2 {
    font-size: 2.5rem;
  }
}
section#pContactus .bContactMain .bLeft .bCompanyInfo > h1 span, section#pContactus .bContactMain .bLeft .bCompanyInfo > h2 span {
  display: block;
  font-size: 1rem;
  line-height: normal;
  color: var(--colorTypoSubtext2);
}
@media (min-width: 768px) {
  section#pContactus .bContactMain .bLeft .bCompanyInfo > h1 span, section#pContactus .bContactMain .bLeft .bCompanyInfo > h2 span {
    font-size: 1.125rem;
  }
}
@media (min-width: 768px) {
  section#pContactus .bContactMain .bLeft .bCompanyInfo > h1, section#pContactus .bContactMain .bLeft .bCompanyInfo > h2 {
    text-align: left;
  }
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 767px) and (max-width: 1023px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow:first-child .bBtn {
    display: flex;
    justify-content: flex-end;
  }
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow > div {
  width: 100%;
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow > div:not([class]) {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow > div:not([class]) h2 {
  text-align: left;
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow p {
  font-size: 0.75rem;
  line-height: normal;
  font-weight: 300;
}
@media (min-width: 768px) {
  section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow p {
    font-size: 0.875rem;
  }
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow nav a {
  font-size: 0.75rem;
  line-height: normal;
  color: var(--colorTypoBasetext);
  font-weight: 300;
}
@media (min-width: 768px) {
  section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow nav a {
    font-size: 0.875rem;
  }
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow nav a:hover {
  color: var(--colorPrimary);
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bAddress,
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bCall,
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bEmail {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  padding-left: 32px;
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bAddress:before,
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bCall:before,
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bEmail:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-color: var(--colorPrimaryDark);
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0px;
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bAddress h2,
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bCall h2,
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bEmail h2 {
  color: var(--colorPrimaryDark);
  font-size: 1.125rem;
  line-height: normal;
}
@media (min-width: 768px) {
  section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bAddress h2,
  section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bCall h2,
  section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bEmail h2 {
    font-size: 1.25rem;
  }
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bAddress::before {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-mask: url("../img/ci/icon/ico-location.svg") center center no-repeat;
  mask: url("../img/ci/icon/ico-location.svg") center center no-repeat;
  mask-size: contain;
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bCall::before {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-mask: url("../img/ci/icon/ico-phone.svg") center center no-repeat;
  mask: url("../img/ci/icon/ico-phone.svg") center center no-repeat;
  mask-size: contain;
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bEmail::before {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-mask: url("../img/ci/icon/ico-mail.svg") center center no-repeat;
  mask: url("../img/ci/icon/ico-mail.svg") center center no-repeat;
  mask-size: contain;
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bLine {
  width: auto;
  overflow: hidden;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
  padding: 20px;
  min-width: 180px;
  max-width: 180px;
  height: fit-content;
}
@media (min-width: 768px) {
  section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bLine {
    max-width: inherit;
  }
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bLine .bPic img {
  display: block;
  width: 100%;
  height: auto;
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bLine .bText {
  text-align: center;
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bLine .bText span {
  font-size: 0.625rem;
  line-height: normal;
  font-weight: 300;
  display: block;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bLine .bText span {
    font-size: 0.75rem;
  }
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bLine .bText a {
  color: #39cd00;
  font-weight: bold;
}
section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bLine .bText ahover {
  color: color-mix(in srgb, #39cd00 70%, black);
}
section#pContactus .bContactMain .bRight {
  position: relative;
  width: 100%;
  background: url(../img/ci/contact/bg-contactform.svg) center center no-repeat;
  background-size: cover;
  padding: 24px;
  overflow: hidden;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 1024px) {
  section#pContactus .bContactMain .bRight {
    padding: 50px 0 50px 70px;
    justify-content: flex-end;
    background: none;
  }
}
section#pContactus .bContactMain .bRight > * {
  width: 100%;
}
section#pContactus .bContactMain .bRight .bForm {
  border: 5px solid var(--colorPrimaryOutline);
  background-color: var(--colorWhite);
  overflow: hidden;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  padding: 16px;
  box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
}
@media (min-width: 1024px) {
  section#pContactus .bContactMain .bRight .bForm {
    border-width: 10px;
    overflow: hidden;
    border-radius: 32px;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    -ms-border-radius: 32px;
    -o-border-radius: 32px;
    padding: 24px 40px;
  }
}

#pageIndex #pBanner .bSlideBanner #slideHeroBanner {
  background: url(../img/ci/index/bg-banner-mb.svg) top center no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  #pageIndex #pBanner .bSlideBanner #slideHeroBanner {
    background: url(../img/ci/index/bg-banner.svg) bottom center no-repeat;
    background-size: cover;
  }
}
#pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner {
  margin-inline: auto;
  width: calc(100% - 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 48px 0 52px;
}
@media (min-width: 768px) {
  #pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  #pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner {
    max-width: 1224px;
  }
}
@media (min-width: 768px) {
  #pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner {
    flex-direction: row;
    gap: 32px;
    min-height: 526px;
  }
}
@media (min-width: 767px) and (max-width: 1023px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  #pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner {
    zoom: 0.8;
  }
}
#pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bText {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  order: 2;
}
@media (min-width: 768px) {
  #pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bText {
    width: 50%;
    order: 0;
    align-items: flex-start;
  }
}
#pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bText h1, #pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bText h2 {
  font-size: 2rem;
  line-height: normal;
  font-weight: normal;
  text-align: center;
}
@media (min-width: 768px) {
  #pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bText h1, #pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bText h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  #pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bText h1, #pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bText h2 {
    text-align: left;
  }
}
#pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bText h1 span, #pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bText h2 span {
  font-weight: bold;
  color: var(--colorPrimary);
}
#pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bText p {
  font-size: 0.875rem;
  line-height: normal;
  font-weight: 300;
  color: var(--colorTypoSubtext2);
  text-align: center;
}
@media (min-width: 768px) {
  #pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bText p {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  #pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bText p {
    text-align: left;
    width: 70%;
  }
}
#pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bText .bBtn {
  margin-top: 16px;
}
#pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bText .bBtn a {
  gap: 8px;
}
#pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bText .bBtn a:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-mask: url("../img/ci/icon/ico-arrow-btn.svg") center center no-repeat;
  mask: url("../img/ci/icon/ico-arrow-btn.svg") center center no-repeat;
  mask-size: contain;
  background-color: var(--colorWhite);
}
#pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bText .bBtn a:hover:after {
  background-color: var(--colorPrimary);
}
#pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bPic {
  width: 100%;
}
@media (min-width: 768px) {
  #pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bPic {
    width: 50%;
  }
}
#pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bPic a {
  cursor: pointer;
}
#pageIndex #pBanner .bSlideBanner #slideHeroBanner .bBanner .bPic img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
#pageIndex #pWhatPAM {
  background-color: var(--colorWhite);
  padding: 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  #pageIndex #pWhatPAM {
    padding: 56px 0;
    gap: 48px;
  }
}
#pageIndex #pWhatPAM .bDetails {
  margin-inline: auto;
  width: calc(100% - 48px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  #pageIndex #pWhatPAM .bDetails {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  #pageIndex #pWhatPAM .bDetails {
    max-width: 1224px;
  }
}
#pageIndex #pWhatPAM .bDetails .bTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
#pageIndex #pWhatPAM .bDetails .bTitle h2 {
  font-size: 0.875rem;
  line-height: normal;
  color: var(--colorTypoIcon);
  font-weight: bold;
  border-bottom: 2px solid var(--colorPrimary);
  padding-bottom: 2px;
}
@media (min-width: 768px) {
  #pageIndex #pWhatPAM .bDetails .bTitle h2 {
    font-size: 1rem;
  }
}
#pageIndex #pWhatPAM .bDetails .bTitle > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  #pageIndex #pWhatPAM .bDetails .bTitle > div {
    flex-direction: row;
    gap: 24px;
  }
}
#pageIndex #pWhatPAM .bDetails .bTitle > div h3 {
  font-size: 1.75rem;
  line-height: normal;
}
@media (min-width: 768px) {
  #pageIndex #pWhatPAM .bDetails .bTitle > div h3 {
    font-size: 2rem;
  }
}
#pageIndex #pWhatPAM .bDetails .bTitle > div h3:nth-child(1) {
  color: var(--colorPrimaryDark);
}
#pageIndex #pWhatPAM .bDetails .bTitle > div h3:nth-child(1) span {
  color: var(--colorPrimary);
  margin-right: 4px;
}
#pageIndex #pWhatPAM .bDetails .bTitle > div h3:nth-child(2) {
  color: var(--colorSecondaryDark);
}
#pageIndex #pWhatPAM .bDetails .bTitle > div h3:nth-child(2) span {
  color: var(--colorSecondary);
  margin-right: 4px;
}
#pageIndex #pWhatPAM .bDetails .bTitle > div h3:nth-child(3) {
  color: var(--colorSubSecondaryDark);
}
#pageIndex #pWhatPAM .bDetails .bTitle > div h3:nth-child(3) span {
  color: var(--colorSubSecondary);
  margin-right: 4px;
}
#pageIndex #pWhatPAM .bDetails > p {
  font-size: 0.875rem;
  line-height: normal;
  color: var(--colorTypoSubtext2);
  font-weight: 300;
  text-align: center;
  max-width: 650px;
}
@media (min-width: 768px) {
  #pageIndex #pWhatPAM .bDetails > p {
    font-size: 1rem;
  }
}
#pageIndex #pWhatPAM .bStructure {
  margin-inline: auto;
  width: calc(100% - 48px);
}
@media (min-width: 768px) {
  #pageIndex #pWhatPAM .bStructure {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  #pageIndex #pWhatPAM .bStructure {
    max-width: 1224px;
  }
}
#pageIndex #pWhatPAM .bStructure .bPic {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#pageIndex #pWhatPAM .bStructure .bPic img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 800px;
}
#pageIndex #pWhatPAM .bFlow {
  margin-inline: auto;
  width: calc(100% - 48px);
}
@media (min-width: 768px) {
  #pageIndex #pWhatPAM .bFlow {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  #pageIndex #pWhatPAM .bFlow {
    max-width: 1224px;
  }
}
#pageIndex #pWhatPAM .bFlow .bGroup {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  #pageIndex #pWhatPAM .bFlow .bGroup {
    flex-direction: row;
    gap: 32px;
  }
}
@media (min-width: 767px) and (max-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  #pageIndex #pWhatPAM .bFlow .bGroup {
    zoom: 0.8;
  }
}
#pageIndex #pWhatPAM .bFlow .bGroup i.ico-arrow {
  display: block;
  width: 16px;
  height: 32px;
  background: url(../img/ci/index/ico-flow-arrow.svg) center center no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}
@media (min-width: 768px) {
  #pageIndex #pWhatPAM .bFlow .bGroup i.ico-arrow {
    zoom: 1;
    transform: rotate(0deg);
  }
}
#pageIndex #pWhatPAM .bFlow .bGroup article {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  position: relative;
  width: 90%;
  max-width: 340px;
  padding: 24px;
}
@media (min-width: 768px) {
  #pageIndex #pWhatPAM .bFlow .bGroup article {
    width: 100%;
  }
}
#pageIndex #pWhatPAM .bFlow .bGroup article:before {
  content: "";
  display: block;
  width: 100%;
  height: 80%;
  background-color: var(--colorGray25);
  overflow: hidden;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  bottom: 0;
  z-index: 0;
}
#pageIndex #pWhatPAM .bFlow .bGroup article > * {
  position: relative;
}
#pageIndex #pWhatPAM .bFlow .bGroup article > i {
  display: block;
  width: 80px;
  height: 80px;
  background: center center no-repeat;
  background-size: contain;
}
#pageIndex #pWhatPAM .bFlow .bGroup article > i.ico-collaction {
  background-image: url(../img/ci/index/ico-collection.svg);
}
#pageIndex #pWhatPAM .bFlow .bGroup article > i.ico-segmentation {
  background-image: url(../img/ci/index/ico-segmentation.svg);
}
#pageIndex #pWhatPAM .bFlow .bGroup article > i.ico-personalized {
  background-image: url(../img/ci/index/ico-personalized.svg);
}
#pageIndex #pWhatPAM .bFlow .bGroup article .bText {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
#pageIndex #pWhatPAM .bFlow .bGroup article .bText h3 {
  text-align: center;
  font-size: 1.125rem;
  line-height: normal;
}
@media (min-width: 768px) {
  #pageIndex #pWhatPAM .bFlow .bGroup article .bText h3 {
    font-size: 1.25rem;
  }
}
#pageIndex #pWhatPAM .bFlow .bGroup article .bText p {
  text-align: center;
  font-weight: 300;
  color: var(--colorTypoSubtext2);
}
@media (min-width: 768px) {
  #pageIndex #pWhatPAM .bFlow .bGroup article .bText p {
    min-height: 2em;
  }
}
#pageIndex #pFeatures {
  background-color: var(--colorWhite);
  padding: 24px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  #pageIndex #pFeatures {
    gap: 48px;
  }
}
#pageIndex #pFeatures > .bTitle {
  margin-inline: auto;
  width: calc(100% - 48px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  #pageIndex #pFeatures > .bTitle {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  #pageIndex #pFeatures > .bTitle {
    max-width: 1224px;
  }
}
#pageIndex #pFeatures > .bTitle h2 {
  font-size: 0.875rem;
  line-height: normal;
  color: var(--colorTypoIcon);
  font-weight: bold;
  border-bottom: 2px solid var(--colorPrimary);
  padding-bottom: 2px;
}
@media (min-width: 768px) {
  #pageIndex #pFeatures > .bTitle h2 {
    font-size: 1rem;
  }
}
#pageIndex #pFeatures > .bTitle p {
  font-size: 1.75rem;
  line-height: normal;
  text-align: center;
  font-weight: bold;
  max-width: 850px;
}
@media (min-width: 768px) {
  #pageIndex #pFeatures > .bTitle p {
    font-size: 2rem;
  }
}
#pageIndex #pFeatures .bFeature {
  margin-inline: auto;
  width: calc(100% - 48px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  #pageIndex #pFeatures .bFeature {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  #pageIndex #pFeatures .bFeature {
    max-width: 1224px;
  }
}
@media (min-width: 768px) {
  #pageIndex #pFeatures .bFeature {
    gap: 48px;
  }
}
#pageIndex #pFeatures .bFeature .bFeatureCate {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-direction: row;
  gap: 0;
}
#pageIndex #pFeatures .bFeature .bFeatureCate nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 12px;
}
@media (min-width: 1024px) {
  #pageIndex #pFeatures .bFeature .bFeatureCate nav {
    padding: 0 24px;
    gap: 24px;
  }
}
@media (min-width: 767px) and (max-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  #pageIndex #pFeatures .bFeature .bFeatureCate nav {
    justify-content: flex-start;
    overflow-x: scroll;
    gap: 16px;
    padding: 0;
  }
  #pageIndex #pFeatures .bFeature .bFeatureCate nav::-webkit-scrollbar {
    -webkit-appearance: none;
  }
}
@media (max-width: 767px) {
  #pageIndex #pFeatures .bFeature .bFeatureCate nav {
    justify-content: flex-start;
    overflow-x: scroll;
    gap: 16px;
    padding: 0;
  }
  #pageIndex #pFeatures .bFeature .bFeatureCate nav::-webkit-scrollbar {
    -webkit-appearance: none;
  }
}
#pageIndex #pFeatures .bFeature .bFeatureCate nav a {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 767px) {
  #pageIndex #pFeatures .bFeature .bFeatureCate nav a {
    width: 25%;
    flex-shrink: 0;
  }
}
@media (min-width: 767px) and (max-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  #pageIndex #pFeatures .bFeature .bFeatureCate nav a {
    width: 18%;
    flex-shrink: 0;
  }
}
#pageIndex #pFeatures .bFeature .bFeatureCate nav a span {
  font-size: 0.75rem;
  line-height: normal;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  display: block;
  text-align: center;
  font-weight: 300;
  color: var(--colorTypoBasetext);
  text-align: center;
}
@media (min-width: 768px) {
  #pageIndex #pFeatures .bFeature .bFeatureCate nav a span {
    font-size: 0.875rem;
  }
}
#pageIndex #pFeatures .bFeature .bFeatureCate nav a i {
  width: 36px;
  height: 36px;
  background: center center no-repeat;
  background-color: var(--colorTypoBasetext);
}
#pageIndex #pFeatures .bFeature .bFeatureCate nav a i.ico-journey {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-mask: url("../img/ci/index/feature/ico-journey.svg") center center no-repeat;
  mask: url("../img/ci/index/feature/ico-journey.svg") center center no-repeat;
  mask-size: contain;
}
#pageIndex #pFeatures .bFeature .bFeatureCate nav a i.ico-sale {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-mask: url("../img/ci/index/feature/ico-sale.svg") center center no-repeat;
  mask: url("../img/ci/index/feature/ico-sale.svg") center center no-repeat;
  mask-size: contain;
}
#pageIndex #pFeatures .bFeature .bFeatureCate nav a i.ico-centralized {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-mask: url("../img/ci/index/feature/ico-centralized.svg") center center no-repeat;
  mask: url("../img/ci/index/feature/ico-centralized.svg") center center no-repeat;
  mask-size: contain;
}
#pageIndex #pFeatures .bFeature .bFeatureCate nav a i.ico-api {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-mask: url("../img/ci/index/feature/ico-api.svg") center center no-repeat;
  mask: url("../img/ci/index/feature/ico-api.svg") center center no-repeat;
  mask-size: contain;
}
#pageIndex #pFeatures .bFeature .bFeatureCate nav a i.ico-segmentation {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-mask: url("../img/ci/index/feature/ico-segmentation.svg") center center no-repeat;
  mask: url("../img/ci/index/feature/ico-segmentation.svg") center center no-repeat;
  mask-size: contain;
}
#pageIndex #pFeatures .bFeature .bFeatureCate nav a i.ico-personalized {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-mask: url("../img/ci/index/feature/ico-personalized.svg") center center no-repeat;
  mask: url("../img/ci/index/feature/ico-personalized.svg") center center no-repeat;
  mask-size: contain;
}
#pageIndex #pFeatures .bFeature .bFeatureCate nav a i.ico-dashboard {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-mask: url("../img/ci/index/feature/ico-dashboard.svg") center center no-repeat;
  mask: url("../img/ci/index/feature/ico-dashboard.svg") center center no-repeat;
  mask-size: contain;
}
#pageIndex #pFeatures .bFeature .bFeatureCate nav a i.ico-ai {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-mask: url("../img/ci/index/feature/ico-ai.svg") center center no-repeat;
  mask: url("../img/ci/index/feature/ico-ai.svg") center center no-repeat;
  mask-size: contain;
}
#pageIndex #pFeatures .bFeature .bFeatureCate nav a i.ico-consent {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-mask: url("../img/ci/index/feature/ico-consent.svg") center center no-repeat;
  mask: url("../img/ci/index/feature/ico-consent.svg") center center no-repeat;
  mask-size: contain;
}
#pageIndex #pFeatures .bFeature .bFeatureCate nav a.active i {
  background-color: var(--colorPrimary);
}
#pageIndex #pFeatures .bFeature .bFeatureCate nav a.active span {
  color: var(--colorPrimary);
  font-weight: bold;
}
#pageIndex #pFeatures .bFeature .bFeatureCate nav a:hover i {
  background-color: var(--colorPrimary);
}
#pageIndex #pFeatures .bFeature .bFeatureCate nav a:hover span {
  color: var(--colorPrimary);
}
#pageIndex #pFeatures .bFeature .bSlideFeature {
  width: 100%;
}
#pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature {
  width: 100%;
}
#pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature .splide__slide {
  display: flex;
  align-items: center;
}
#pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature article {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  #pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature article {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }
}
#pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature article .bText {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  #pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature article .bText {
    gap: 16px;
    padding: 0 52px;
  }
}
@media (min-width: 767px) and (max-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  #pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature article .bText {
    padding: 0;
  }
}
#pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature article .bText h2,
#pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature article .bText h3 {
  position: relative;
  font-size: 1.375rem;
  line-height: normal;
  color: var(--colorTypoSubtext1);
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  #pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature article .bText h2,
  #pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature article .bText h3 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  #pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature article .bText h2,
  #pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature article .bText h3 {
    text-align: left;
  }
}
#pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature article .bText h2:after,
#pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature article .bText h3:after {
  content: "";
  display: block;
  width: 30%;
  max-width: 140px;
  height: 3px;
  background-color: var(--colorPrimary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  bottom: -16px;
}
@media (min-width: 768px) {
  #pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature article .bText h2:after,
  #pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature article .bText h3:after {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    margin-top: 16px;
  }
}
#pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature article .bText p {
  font-size: 0.875rem;
  line-height: normal;
  font-weight: 300;
  color: var(--colorTypoSubtext2);
  text-align: center;
}
@media (min-width: 768px) {
  #pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature article .bText p {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  #pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature article .bText p {
    text-align: left;
  }
}
#pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature article .bPic {
  display: flex;
  justify-content: flex-end;
}
#pageIndex #pFeatures .bFeature .bSlideFeature #slideFeature article .bPic img {
  display: block;
  width: 100%;
  height: auto;
}
#pageIndex #pCompare {
  background-color: var(--colorWhite);
  padding: 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  #pageIndex #pCompare {
    padding: 56px 0;
    gap: 48px;
  }
}
@media (min-width: 1023px) and (max-width: 1365px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  #pageIndex #pCompare {
    zoom: 0.8;
  }
}
#pageIndex #pCompare > .bTitle {
  margin-inline: auto;
  width: calc(100% - 48px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  #pageIndex #pCompare > .bTitle {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  #pageIndex #pCompare > .bTitle {
    max-width: 1224px;
  }
}
#pageIndex #pCompare > .bTitle h2 {
  font-size: 0.875rem;
  line-height: normal;
  color: var(--colorTypoIcon);
  font-weight: bold;
  border-bottom: 2px solid var(--colorPrimary);
  padding-bottom: 2px;
}
@media (min-width: 768px) {
  #pageIndex #pCompare > .bTitle h2 {
    font-size: 1rem;
  }
}
#pageIndex #pCompare > .bTitle p {
  font-size: 1.75rem;
  line-height: normal;
  text-align: center;
  font-weight: bold;
  max-width: 850px;
}
@media (min-width: 768px) {
  #pageIndex #pCompare > .bTitle p {
    font-size: 2rem;
  }
}
#pageIndex #pCompare i[class^=ico-] {
  display: block;
  width: 28px;
  height: 28px;
  background: center center no-repeat;
  background-size: contain;
}
#pageIndex #pCompare i[class^=ico-][class*=yes] {
  background-image: url(../img/ci/index/compare/ico-yes.svg);
}
#pageIndex #pCompare i[class^=ico-][class*=no] {
  background-image: url(../img/ci/index/compare/ico-no.svg);
}
#pageIndex #pCompare i[class^=ico-][class*=none] {
  background-image: url(../img/ci/index/compare/ico-none.svg);
}
#pageIndex #pCompare .bCompare-pc {
  margin-inline: auto;
  width: calc(100% - 48px);
  display: none;
}
@media (min-width: 768px) {
  #pageIndex #pCompare .bCompare-pc {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  #pageIndex #pCompare .bCompare-pc {
    max-width: 1224px;
  }
}
@media (min-width: 1024px) {
  #pageIndex #pCompare .bCompare-pc {
    display: block;
  }
}
#pageIndex #pCompare .bCompare-pc .bGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: scroll;
  padding-bottom: 0;
}
#pageIndex #pCompare .bCompare-pc .bGroup::-webkit-scrollbar {
  -webkit-appearance: none;
}
#pageIndex #pCompare .bCompare-pc .bGroup .bRow {
  display: grid;
  grid-template-columns: 25% auto;
  align-items: center;
  gap: 16px;
  width: 250%;
}
@media (min-width: 1024px) {
  #pageIndex #pCompare .bCompare-pc .bGroup .bRow {
    grid-template-columns: 35% auto;
    width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 1023px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  #pageIndex #pCompare .bCompare-pc .bGroup .bRow {
    width: 150%;
  }
}
#pageIndex #pCompare .bCompare-pc .bGroup .bRow:first-child > h3:first-child {
  border-radius: 12px 12px 0 0;
  -webkit-border-radius: 12px 12px 0 0;
  -moz-border-radius: 12px 12px 0 0;
  -ms-border-radius: 12px 12px 0 0;
  -o-border-radius: 12px 12px 0 0;
  background-color: var(--colorSecondary);
  font-size: 1rem;
  line-height: normal;
  font-weight: 500;
  color: var(--colorWhite);
  text-align: center;
  padding: 12px;
}
@media (min-width: 768px) {
  #pageIndex #pCompare .bCompare-pc .bGroup .bRow:first-child > h3:first-child {
    font-size: 1.125rem;
  }
}
#pageIndex #pCompare .bCompare-pc .bGroup .bRow:first-child > div {
  background: none !important;
}
#pageIndex #pCompare .bCompare-pc .bGroup .bRow:first-child > div h4 {
  font-size: 1rem;
  line-height: normal;
  font-weight: 500;
  text-align: center;
  padding: 12px;
  border-radius: 12px 12px 0 0;
  -webkit-border-radius: 12px 12px 0 0;
  -moz-border-radius: 12px 12px 0 0;
  -ms-border-radius: 12px 12px 0 0;
  -o-border-radius: 12px 12px 0 0;
  background-color: var(--ci-gray10);
  color: #98a2b3;
}
@media (min-width: 768px) {
  #pageIndex #pCompare .bCompare-pc .bGroup .bRow:first-child > div h4 {
    font-size: 1.125rem;
  }
}
#pageIndex #pCompare .bCompare-pc .bGroup .bRow:first-child > div h4:first-child {
  background-color: var(--colorPrimary);
  color: var(--colorWhite);
}
#pageIndex #pCompare .bCompare-pc .bGroup .bRow:last-child > h5,
#pageIndex #pCompare .bCompare-pc .bGroup .bRow:last-child > div p {
  border-radius: 0 0 12px 12px;
  -webkit-border-radius: 0 0 12px 12px;
  -moz-border-radius: 0 0 12px 12px;
  -ms-border-radius: 0 0 12px 12px;
  -o-border-radius: 0 0 12px 12px;
}
#pageIndex #pCompare .bCompare-pc .bGroup .bRow > h5 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 300;
  height: 64px;
  text-align: center;
}
#pageIndex #pCompare .bCompare-pc .bGroup .bRow > div {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}
#pageIndex #pCompare .bCompare-pc .bGroup .bRow > div p {
  width: 100%;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#pageIndex #pCompare .bCompare-pc .bGroup .bRow:nth-child(odd) > h5,
#pageIndex #pCompare .bCompare-pc .bGroup .bRow:nth-child(odd) > div p {
  background-color: #f2f4f7;
}
#pageIndex #pCompare .bCompare-mb {
  margin-inline: auto;
  width: calc(100% - 48px);
  display: block;
}
@media (min-width: 768px) {
  #pageIndex #pCompare .bCompare-mb {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  #pageIndex #pCompare .bCompare-mb {
    max-width: 1224px;
  }
}
@media (min-width: 1024px) {
  #pageIndex #pCompare .bCompare-mb {
    display: none;
  }
}
#pageIndex #pCompare .bCompare-mb .bGroup {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-direction: column;
}
@media (min-width: 767px) and (max-width: 1023px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  #pageIndex #pCompare .bCompare-mb .bGroup {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
#pageIndex #pCompare .bCompare-mb .bGroup article {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
#pageIndex #pCompare .bCompare-mb .bGroup article > h3 {
  font-size: 1rem;
  line-height: normal;
  font-weight: 500;
  text-align: center;
  background-color: var(--ci-gray10);
  text-align: center;
  color: #98a2b3;
  padding: 12px;
}
@media (min-width: 768px) {
  #pageIndex #pCompare .bCompare-mb .bGroup article > h3 {
    font-size: 1.125rem;
  }
}
#pageIndex #pCompare .bCompare-mb .bGroup article.highlight > h3 {
  background-color: var(--colorPrimary);
  color: var(--colorWhite);
}
#pageIndex #pCompare .bCompare-mb .bGroup article .bRow {
  display: grid;
  grid-template-columns: 80% auto;
  align-items: center;
}
#pageIndex #pCompare .bCompare-mb .bGroup article .bRow > h4 {
  font-weight: 300;
}
#pageIndex #pCompare .bCompare-mb .bGroup article .bRow > * {
  padding: 12px 24px;
}
#pageIndex #pCompare .bCompare-mb .bGroup article .bRow:nth-child(odd) {
  background-color: #f2f4f7;
}
#pageIndex #pCTA {
  background: url(../img/ci/index/bg-cta.svg) left center no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  #pageIndex #pCTA {
    background-position: center center;
  }
}
#pageIndex #pCTA .bDetails {
  margin-inline: auto;
  width: calc(100% - 48px);
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  #pageIndex #pCTA .bDetails {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  #pageIndex #pCTA .bDetails {
    max-width: 1224px;
  }
}
#pageIndex #pCTA .bDetails h2 {
  color: var(--colorWhite);
  font-weight: bold;
  font-size: 1.375rem;
  line-height: normal;
  text-align: center;
}
@media (min-width: 768px) {
  #pageIndex #pCTA .bDetails h2 {
    font-size: 1.5rem;
  }
}
#pageIndex #pPricing {
  padding: 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  #pageIndex #pPricing {
    padding: 56px 0;
    gap: 48px;
  }
}
#pageIndex #pPricing > .bTitle {
  margin-inline: auto;
  width: calc(100% - 48px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  #pageIndex #pPricing > .bTitle {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  #pageIndex #pPricing > .bTitle {
    max-width: 1224px;
  }
}
#pageIndex #pPricing > .bTitle h2 {
  font-size: 0.875rem;
  line-height: normal;
  color: var(--colorTypoIcon);
  font-weight: bold;
  border-bottom: 2px solid var(--colorPrimary);
  padding-bottom: 2px;
}
@media (min-width: 768px) {
  #pageIndex #pPricing > .bTitle h2 {
    font-size: 1rem;
  }
}
#pageIndex #pPricing > .bTitle p {
  font-size: 1.75rem;
  line-height: normal;
  text-align: center;
  font-weight: bold;
  max-width: 850px;
}
@media (min-width: 768px) {
  #pageIndex #pPricing > .bTitle p {
    font-size: 2rem;
  }
}
#pageIndex #pBrand {
  background-color: var(--colorWhite);
}
#pageIndex #pContactus {
  background: url(../img/ci/index/bg-contect.jpg) center center no-repeat;
  background-size: auto 110%;
  padding: 32px 0;
}
@media (min-width: 768px) {
  #pageIndex #pContactus {
    padding: 56px 0;
  }
}
@media (min-width: 1024px) {
  #pageIndex #pContactus {
    background-size: 110%;
  }
}
@media (min-width: 1023px) and (max-width: 1365px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  #pageIndex #pContactus {
    zoom: 0.8;
  }
}

/*# sourceMappingURL=index.css.map */
