@font-face {
  font-family: 'hanyi';
  src: url('./fonts/hanyi-regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'hanyi';
  src: url('./fonts/hanyi-bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'hanyi';
  src: url('./fonts/hanyi-bold-black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}

:root {
  --primary-color: black;
  --secondary-color: white;
  --text-color: black;
  --gap: 100px;
  --mobile-gap: 70px;
  --line-height: 1.5;
  --header-line-height: 1.2;
  --h1: 45px;
  --h2: 40px;
  --h3: 35px;
  --h4: 30px;
  --h5: 25px;
  --h6: 20px;
  --h7: 18px;
  --mobile-h1: 30px;
  --mobile-h2: 25px;
  --mobile-h3: 20px;
  --p: 16px;
  --max-height: min(60vh, 450px);
   --fontFamily: 'hanyi', sans-serif; 
  /* --container-width-base: calc(100% - 70px - 50px); */
}

* {
  margin: 0;
  box-sizing: border-box;
}

body {
  line-height: var(--line-height);
  font-family: 'hanyi', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--header-line-height);
  text-align: left;
  margin-top: 0 !important;
}

.wpb_text_column h1 {
  font-size: var(--h1);
}

.wpb_text_column h2 {
  font-size: var(--h2);
}

.wpb_text_column h3 {
  font-size: var(--h3);
}

.wpb_text_column h4 {
  font-size: var(--h4);
}

.wpb_text_column h5 {
  font-size: var(--h5);
}

.wpb_text_column h6 {
  font-size: var(--h6);
}

.text_justify,
.text_justify_last {
  text-align: justify;
}

.text_justify_last {
  text-align-last: center;
}

.text_center,
.text_center :is(h1, h2, h3, h4, h5, h6) {
  text-align: center !important;
}

.text_left,
.text_left :is(h1, h2, h3, h4, h5, h6) {
  text-align: left !important;
}

.text_right,
.text_right :is(h1, h2, h3, h4, h5, h6) {
  text-align: right !important;
}

.text_white,
.text_white h1,
.text_white h2,
.text_white h3,
.text_white h4,
.text_white h5,
.text_white h6,
.text_white a {
  color: white !important;
}

.text_black,
.text_black h1,
.text_black h2,
.text_black h3,
.text_black h4,
.text_black h5,
.text_black h6,
.text_black a {
  color: black !important;
}

.image-w-full,
.image-w-full * {
  width: 100%;
}

.image-w-full img {
  object-fit: cover;
}

.image-hover-scale {
  overflow: hidden;
}

.image-hover-scale img {
  transition: transform 500ms ease-out;
}

.image-hover-scale:hover img {
  transform: scale(1.05);
}

.image-br {
  border-radius: 15px;
  overflow: hidden;
}

.image-mh img {
  max-height: var(--max-height);
}

.image-mh-300 img {
  max-height: 300px;
}

.image-mh-400 img {
  max-height: 400px;
}

.image-mh-500 img {
  max-height: 500px;
}

@media screen and (min-width: 375px) {
  .span-inline-block span {
    display: inline-block;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.custom-table table {
  width: auto;
}

.custom-table table,
.custom-table table td {
  border: none;
}

.custom-table table td {
  padding: 2.5px 5px;
  vertical-align: top;
}

.custom-table table td:first-child {
  padding-left: 0 !important;
}

.custom-table table td:last-child {
  padding-right: 0 !important;
}

.custom-table table tr:first-child td {
  padding-top: 0 !important;
}

.custom-table table tr:last-child td {
  padding-bottom: 0 !important;
}

.wpcf7 p::after {
  display: none;
}

.wpb_text_column ul,
.wpb_text_column ol {
  padding-left: 20px;
}

.mobile_view {
  display: none !important;
}

.ul-gap :is(ul, ol) > li:not(:last-child) {
  margin-bottom: 15px;
}

.ul-gap :is(ul, ol) :is(ul, ol) {
  margin-top: 15px;
}

.ul-gap :is(ul, ol) ul {
  list-style-type: circle;
}

.ul-gap :is(ul, ol) > li {
  text-align: left;
}

.reg_no h1 span,
.reg_no h2 span,
.reg_no h3 span,
.reg_no h4 span,
.reg_no h5 span,
.reg_no h6 span {
  font-size: 16px !important;
  font-weight: 400;
}

.lh-header {
  line-height: var(--header-line-height);
}

.fs-h1,
.span-fs-h1 span {
  font-size: var(--h1);
}

.fs-h2,
.span-fs-h2 span {
  font-size: var(--h2);
}

.fs-h3,
.span-fs-h3 span {
  font-size: var(--h3);
}

.fs-h4,
.span-fs-h4 span {
  font-size: var(--h4);
}

.fs-h5,
.span-fs-h5 span {
  font-size: var(--h5);
}

.fs-h6,
.span-fs-h6 span {
  font-size: var(--h6);
}

.fs-h7,
.span-fs-h7 span {
  font-size: var(--h7);
}

.fs-p,
.span-fs-p span {
  font-size: var(--p);
}

.fw-100,
.span-fw-100 span:first-child,
.title-100 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 100;
}

.fw-200,
.span-fw-200 span:first-child,
.title-200 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 200;
}

.fw-300,
.span-fw-300 span:first-child,
.title-300 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 300;
}

.fw-400,
.span-fw-400 span:first-child,
.title-400 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 400;
}

.fw-500,
.span-fw-500 span:first-child,
.title-500 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 500;
}

.fw-600,
.span-fw-600 span:first-child,
.title-600 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 600;
}

.fw-700,
.span-fw-700 span:first-child,
.title-700 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 700;
}

.fw-800,
.span-fw-800 span:first-child,
.title-800 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 800;
}

.fw-900,
.span-fw-900 span:first-child,
.title-900 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 900;
}

.title-fs-h7 :is(h1, h2, h3, h4, h5, h6) {
  font-size: var(--h7);
}

.background-fixed {
  background-attachment: fixed !important;
}

.mb {
  margin-bottom: 35px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-half {
  margin-bottom: calc(var(--gap) / 2) !important;
}

.mt {
  margin-top: 35px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-half {
  margin-top: calc(var(--gap) / 2) !important;
}

.gap {
  padding-top: var(--gap) !important;
  padding-bottom: calc(var(--gap) - 35px) !important;
}

.gap-t {
  padding-top: var(--gap) !important;
}

.gap-b {
  padding-bottom: calc(var(--gap) - 35px) !important;
}

.gap.full,
.gap-b.full {
  padding-bottom: var(--gap) !important;
}

.gap-m {
  margin-top: var(--gap) !important;
  margin-bottom: var(--gap) !important;
}

.gap-m-t {
  margin-top: var(--gap) !important;
}

.gap-m-b {
  margin-bottom: calc(var(--gap) - 35px) !important;
}

.row-mb-10 > div > div > div > *:not(:last-child) {
  margin-bottom: 10px;
}

.row-mb-20 > div > div > div > *:not(:last-child) {
  margin-bottom: 20px;
}

.row-mb-30 > div > div > div > *:not(:last-child) {
  margin-bottom: 30px;
}

.vc_section.column-inner-0,
.vc_row.column-inner-0 > div > div {
  padding-top: 0 !important;
}

.grid {
  display: grid !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  gap: 30px;
}

.grid::before,
.grid::after {
  display: none !important;
}

.grid > div {
  width: 100% !important;
}

.grid > div > div {
  height: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.grid > div > div > div > *:last-child {
  margin-bottom: 0;
}

.grid-row-gap {
  row-gap: var(--gap);
}

.grid-row-gap-half {
  row-gap: calc(var(--gap) / 2);
}

.grid-column-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-column-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-column-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-column-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-column-6 {
  grid-template-columns: repeat(6, 1fr);
}

.relative {
  position: relative;
}

.z-1 {
  z-index: 1;
}

.display-none {
  display: none !important;
}

@media screen and (min-width: 576px) {
  .grid-sm {
    display: grid !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 30px;
  }

  .grid-sm::before,
  .grid-sm::after {
    display: none !important;
  }

  .grid-sm > div {
    width: 100% !important;
  }

  .grid-sm > div > div {
    height: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .grid-sm > div > div > div > *:last-child {
    margin-bottom: 0;
  }

  .grid-column-sm-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-column-sm-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-column-sm-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-column-sm-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .grid-column-sm-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media screen and (min-width: 768px) {
  /* body:not(.single-product) .vc_row > div > div > div > *:last-child {
    margin-bottom: 0;
  } */

  .desktop_text_center,
  .desktop_text_center :is(h1, h2, h3, h4, h5, h6) {
    text-align: center !important;
  }

  .desktop_text_left,
  .desktop_text_left :is(h1, h2, h3, h4, h5, h6) {
    text-align: left !important;
  }

  .desktop_text_right,
  .desktop_text_right :is(h1, h2, h3, h4, h5, h6) {
    text-align: right !important;
  }

  .desktop-mb {
    margin-bottom: 35px !important;
  }

  .desktop-mb-0 {
    margin-bottom: 0 !important;
  }

  .desktop-mb-10 {
    margin-bottom: 10px !important;
  }

  .desktop-mb-20 {
    margin-bottom: 20px !important;
  }

  .desktop-mb-30 {
    margin-bottom: 30px !important;
  }

  .desktop-mb-50 {
    margin-bottom: 50px !important;
  }

  .desktop-mb-half {
    margin-bottom: calc(var(--gap) / 2) !important;
  }

  .column-gap {
    --column-gap: max(30px, 2vw);
  }

  .column-gap > div {
    padding-left: var(--column-gap) !important;
    padding-right: var(--column-gap) !important;
  }

  .column-gap > div:first-child {
    padding-left: 0 !important;
  }

  .column-gap > div:last-child {
    padding-right: 0 !important;
  }

  .column-gap.vc_row-no-padding,
  .vc_row-no-padding .column-gap {
    --column-gap: max(30px, 2.5vw);
  }

  .column-gap .grid-md {
    display: grid !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 30px;
  }

  .desktop-image-mh-300 img {
    max-height: 300px;
  }

  .desktop-image-mh-400 img {
    max-height: 400px;
  }

  .desktop-image-mh-500 img {
    max-height: 500px;
  }

  .padding-left-gap.vc_row:not(.vc_inner) > div:first-child {
    padding-left: calc((100vw - min(var(--container-width-base), var(--normal-container-max-width))) / 2) !important;
  }

  .padding-left-gap.vc_row-no-padding:not(.vc_inner) > div:first-child,
  .vc_row.vc_row-no-padding .padding-left-gap.vc_row.vc_inner > div:first-child {
    padding-left: calc((100vw - min(var(--container-width-base), var(--normal-container-max-width))) / 2 + 15px) !important;
  }

  .padding-right-gap:not(.vc_inner) > div:last-child {
    padding-right: calc((100vw - min(var(--container-width-base), var(--normal-container-max-width))) / 2) !important;
  }

  .padding-right-gap.vc_row-no-padding:not(.vc_inner) > div:last-child,
  .vc_row.vc_row-no-padding .padding-right-gap.vc_row.vc_inner > div:last-child {
    padding-right: calc((100vw - min(var(--container-width-base), var(--normal-container-max-width))) / 2 + 15px) !important;
  }

  .grid-md {
    display: grid !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 30px;
  }

  .grid-md::before,
  .grid-md::after {
    display: none !important;
  }

  .grid-md > div {
    width: 100% !important;
  }

  .grid-md > div > div {
    height: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .grid-md > div > div > div > *:last-child {
    margin-bottom: 0;
  }

  .grid-column-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-column-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-column-md-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-column-md-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .grid-column-md-6 {
    grid-template-columns: repeat(6, 1fr);
  }

  .align-center {
    display: flex;
    align-items: center;
  }

  .align-end {
    display: flex;
    align-items: flex-end;
  }
}

@media screen and (min-width: 992px) {
  .grid-lg {
    display: grid !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 30px;
  }

  .grid-lg::before,
  .grid-lg::after {
    display: none !important;
  }

  .grid-lg > div {
    width: 100% !important;
  }

  .grid-lg > div > div {
    height: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .grid-lg > div > div > div > *:last-child {
    margin-bottom: 0;
  }

  .grid-column-lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-column-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-column-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-column-lg-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .grid-column-lg-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  .grid-xl {
    display: grid !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 30px;
  }

  .grid-xl::before,
  .grid-xl::after {
    display: none !important;
  }

  .grid-xl > div {
    width: 100% !important;
  }

  .grid-xl > div > div {
    height: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .grid-xl > div > div > div > *:last-child {
    margin-bottom: 0;
  }

  .grid-column-xl-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-column-xl-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-column-xl-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-column-xl-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .grid-column-xl-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

.grid-gap-0 {
  gap: 0;
}

@media screen and (max-width: 991px) {
  :root {
    --gap: var(--mobile-gap);
    --h1: var(--mobile-h1);
    --h2: var(--mobile-h1);
    --h3: var(--mobile-h2);
    --h4: var(--mobile-h2);
    --h5: var(--mobile-h3);
    --h6: var(--mobile-h3);
  }
}

@media screen and (max-width: 767px) {
  .gap.full,
  .gap-b.full {
    padding-bottom: var(--gap) !important;
  }

  .mobile_text_center,
  .mobile_text_center :is(h1, h2, h3, h4, h5, h6) {
    text-align: center !important;
  }

  .mobile_text_left,
  .mobile_text_left :is(h1, h2, h3, h4, h5, h6) {
    text-align: left !important;
  }

  .mobile_text_right,
  .mobile_text_right :is(h1, h2, h3, h4, h5, h6) {
    text-align: right !important;
  }

  .mobile-image-br {
    border-radius: 15px;
    overflow: hidden;
  }

  .mobile-mb {
    margin-bottom: 35px !important;
  }

  .mobile-mb-0 {
    margin-bottom: 0 !important;
  }

  .mobile-mb-10 {
    margin-bottom: 10px !important;
  }

  .mobile-mb-20 {
    margin-bottom: 20px !important;
  }

  .mobile-mb-30 {
    margin-bottom: 30px !important;
  }

  .mobile-mb-50 {
    margin-bottom: 50px !important;
  }

  .mobile-mb-half {
    margin-bottom: calc(var(--gap) / 2) !important;
  }

  .mobile-mt {
    margin-top: 35px !important;
  }

  .mobile-mt-0 {
    margin-top: 0 !important;
  }

  .mobile-mt-10 {
    margin-top: 10px !important;
  }

  .mobile-mt-20 {
    margin-top: 20px !important;
  }

  .mobile-mt-30 {
    margin-top: 30px !important;
  }

  .mobile-mt-50 {
    margin-top: 50px !important;
  }

  .mobile-mt-half {
    margin-top: calc(var(--gap) / 2) !important;
  }

  .mobile-image-mh-300 img {
    max-height: 300px;
  }

  .mobile-image-mh-400 img {
    max-height: 400px;
  }

  .mobile-image-mh-500 img {
    max-height: 500px;
  }

  .reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  .desktop_view {
    display: none !important;
  }

  .mobile_view {
    display: block !important;
  }

  .mobile-br-none br {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}

/* Blocksy */

[data-vertical-spacing*='top'] {
  padding-top: 0;
}

[data-vertical-spacing*='bottom'] {
  padding-bottom: 0;
}

.entry-content > * {
  margin-bottom: 0;
}

.vc_btn3-container {
  margin-bottom: 35px;
}

.ct-menu-link:not(:empty) {
  padding-left: 0;
  padding-right: 0;
}

ul.menu {
  display: flex;
  column-gap: 55px;
}

.vc_row:not([vc-full-width-init]),
.vc_section[data-vc-full-width]:not([data-vc-stretch-content]) > .vc_row {
  margin-left: -15px;
  margin-right: -15px;
}

.vc_row-has-fill + .vc_row-full-width + .vc_row > .vc_column_container > .vc_column-inner {
  padding-top: 0;
}

.wpb_gmaps_widget .wpb_wrapper {
  padding: 0;
}

.ct-footer-copyright > *:not(:first-child) {
  margin-top: 0;
}

#footer [data-row='bottom'] .inspiren br {
  display: none;
}

@media screen and (min-width: 768px) {
  .ct-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .ct-container {
    width: calc(100% - 30px);
  }

  .wpb_gmaps_widget .wpb_map_wraper iframe {
    height: 300px;
  }
}

@media screen and (max-width: 600px) {
  .admin-bar {
    --admin-bar: 46px;
  }
}

/* Custom End */
video {
  display: block;
}

.video-wrapper {
  position: relative;
}

.video-play,
.video-pause,
.video-continue {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-play i,
.video-pause i {
  font-size: 50px;
  color: var(--paletteColor2);
}

.video-continue img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zeonlogo img{
    height: 50px!important;
}
.video-continue {
  display: none !important;
}

.video-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--paletteColor2);
}

 body:is(.home, .page-id-74) .custom-button .vc_general {
  display: none;
}

#header, #footer {
    display: none !important;
}

.custom-button .vc_general {
    background: var(--paletteColor2) !important;
    color: white !important;
    border-radius: 0 !important;
    outline: none !important;
    padding: 12px 15px !important;
    border: none !important;
    font-size: 18px !important;
    font-family: hanyi, sans-serif;

}

.custom-button .vc_general::before,
.custom-button .vc_general::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: auto;
    aspect-ratio: 36 / 31;
    vertical-align: middle;

}

.custom-button .vc_general::before {
        background: center / contain no-repeat url(https://funnel.inspiren.com.my/wp-content/uploads/2023/08/arrow-right.png);
            margin-right: 15px;
            animation: toRight 800ms linear alternate infinite;
}

.custom-button .vc_general::after {
         background: center / contain no-repeat url(https://funnel.inspiren.com.my/wp-content/uploads/2023/08/arrow-left.png);
            margin-left: 15px; 
            animation: toLeft 800ms linear alternate infinite;
}

.text_underline {
    text-decoration: underline;
}

.logo-image img {
    height: 70px;
    width: auto;
}

.home-video-row {
    padding-top: 35px;
    min-height: 100vh;
}

.home-tq-row .fs-h1 {
    font-size: calc(var(--h1) + 15px);
}

.home-video-row .vc_row.vc_inner {
    position: relative;
}

.home-video-row .vc_row.vc_inner .text_absolute {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    display: none;
}

.home-video-row .vc_row.vc_inner .text_absolute p::before {
    content: "\f06a";
    vertical-align: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    margin-right: 5px;
}
.appoitmentInfo {
    text-align: center;
    line-height: 1.5;
}
.ssss {
    font-size: 17px;
    background: #ffdf00;
    color: black!important;
    display: block;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
    padding: 4px 10px;
    display:block!important;
}

@media screen and (min-width: 768px) {
    .video-html-wrapper {
    padding-left: 15%;
    padding-right: 15%;
}
}

@media screen and (max-width: 991px) {
    .home-tq-row .fs-h1 {
    font-size: calc(var(--h1) + 10px);
}

.appoitmentInfo {
    font-size: 15px;
}

}

@media screen and (max-width: 767px) {
    .home-video-row {
            padding-top: 20px;
    }
}

@keyframes toLeft {
    to {
        transform: translateX(-10px);
    }
}

@keyframes toRight {
    to {
        transform: translateX(10px);
    }
}