.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%;
}

div[id^=pageContactus] section#pContactus {
  margin: 16px 0 24px;
}
@media (min-width: 1024px) {
  div[id^=pageContactus] section#pContactus {
    margin: 16px 0 48px;
  }
}
@media (min-width: 1024px) {
  div[id^=pageContactus] 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;
  }
}
div[id^=pageContactus] 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) {
  div[id^=pageContactus] section#pContactus .bContactMain {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  div[id^=pageContactus] section#pContactus .bContactMain {
    max-width: 1224px;
  }
}
@media (min-width: 1024px) {
  div[id^=pageContactus] 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) {
  div[id^=pageContactus] section#pContactus .bContactMain {
    zoom: 0.9;
  }
}
div[id^=pageContactus] section#pContactus .bContactMain .bLeft {
  position: relative;
}
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 24px;
}
@media (min-width: 1024px) {
  div[id^=pageContactus] 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) {
  div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo {
    max-width: 450px;
  }
}
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo > h1, div[id^=pageContactus] 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) {
  div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo > h1, div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo > h2 {
    font-size: 2.5rem;
  }
}
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo > h1 span, div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo > h2 span {
  display: block;
  font-size: 1rem;
  line-height: normal;
  color: var(--colorTypoSubtext2);
}
@media (min-width: 768px) {
  div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo > h1 span, div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo > h2 span {
    font-size: 1.125rem;
  }
}
@media (min-width: 768px) {
  div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo > h1, div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo > h2 {
    text-align: left;
  }
}
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  div[id^=pageContactus] 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) {
  div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow:first-child .bBtn {
    display: flex;
    justify-content: flex-end;
  }
}
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow > div {
  width: 100%;
}
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow > div:not([class]) {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
}
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow > div:not([class]) h2 {
  text-align: left;
}
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow p {
  font-size: 0.75rem;
  line-height: normal;
  font-weight: 300;
}
@media (min-width: 768px) {
  div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow p {
    font-size: 0.875rem;
  }
}
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
div[id^=pageContactus] 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) {
  div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow nav a {
    font-size: 0.875rem;
  }
}
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow nav a:hover {
  color: var(--colorPrimary);
}
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bAddress,
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bCall,
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bEmail {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  padding-left: 32px;
}
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bAddress:before,
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bCall:before,
div[id^=pageContactus] 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;
}
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bAddress h2,
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bCall h2,
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bEmail h2 {
  color: var(--colorPrimaryDark);
  font-size: 1.125rem;
  line-height: normal;
}
@media (min-width: 768px) {
  div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bAddress h2,
  div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bCall h2,
  div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bEmail h2 {
    font-size: 1.25rem;
  }
}
div[id^=pageContactus] 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;
}
div[id^=pageContactus] 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;
}
div[id^=pageContactus] 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;
}
div[id^=pageContactus] 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) {
  div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bLine {
    max-width: inherit;
  }
}
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bLine .bPic img {
  display: block;
  width: 100%;
  height: auto;
}
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bLine .bText {
  text-align: center;
}
div[id^=pageContactus] 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) {
  div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bLine .bText span {
    font-size: 0.75rem;
  }
}
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bLine .bText a {
  color: #39cd00;
  font-weight: bold;
}
div[id^=pageContactus] section#pContactus .bContactMain .bLeft .bCompanyInfo .bGroup .bRow .bLine .bText ahover {
  color: color-mix(in srgb, #39cd00 70%, black);
}
div[id^=pageContactus] 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) {
  div[id^=pageContactus] section#pContactus .bContactMain .bRight {
    padding: 50px 0 50px 70px;
    justify-content: flex-end;
    background: none;
  }
}
div[id^=pageContactus] section#pContactus .bContactMain .bRight > * {
  width: 100%;
}
div[id^=pageContactus] 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) {
  div[id^=pageContactus] 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;
  }
}

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