@font-face {
  font-family: Kanit-Thai;
  src: url('../fonts/Kanit-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Kanit-Thai;
  src: url('../fonts/Kanit-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Kanit-Thai;
  src: url('../fonts/Kanit-LightItalic.ttf') format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Kanit-Thai;
  src: url('../fonts/Kanit-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Kanit-Thai;
  src: url('../fonts/Kanit-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Kanit-Thai;
  src: url('../fonts/Kanit-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Kanit-Thai;
  src: url('../fonts/Kanit-MediumItalic.ttf') format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Kanit-Thai;
  src: url('../fonts/Kanit-SemiBoldItalic.ttf') format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Kanit-Thai;
  src: url('../fonts/Kanit-BoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Kanit-Thai;
  src: url('../fonts/Kanit-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --dark-1: #434343;
  --main-green: #8fbd90;
  --white: white;
  --green-bg: #d1e8c9;
  --dark-2: #333;
  --light: #98c2d0;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h1 {
  color: var(--dark-1);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--main-green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  margin-bottom: 0;
  padding-left: 40px;
}

strong {
  font-weight: 600;
}

.main-body {
  text-align: center;
  font-family: Kanit-Thai, Tahoma, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

.web-header {
  z-index: 10;
  background-color: var(--main-green);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.web-logo {
  object-fit: cover;
  width: 350px;
  height: 177px;
}

.logo-link {
  margin-left: -10px;
}

.logo-link.mobile {
  display: none;
}

.navbar {
  z-index: 10;
  background-color: var(--main-green);
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  position: sticky;
  top: 0;
}

.navbar-container {
  justify-content: center;
  align-items: center;
  max-width: 95%;
  display: flex;
}

.navbar-link {
  border-right: 1px solid var(--white);
  color: var(--white);
  margin-left: 0;
  margin-right: 0;
  padding: 10px 15px 12px;
  font-size: 16px;
  line-height: 22px;
}

.navbar-link:hover {
  background-color: var(--white);
  color: var(--main-green);
  text-decoration: none;
}

.navbar-link.w--current {
  background-color: var(--white);
  color: var(--main-green);
}

.navbar-link.dropdown {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: center;
  align-items: center;
  padding-right: 10px;
  display: flex;
}

.navbar-link.dropdown.w--open {
  background-color: var(--white);
  color: var(--main-green);
}

.navbar-link.end {
  border-right-style: none;
}

.navbar-link.small {
  border-bottom: 1px solid var(--white);
  border-right-style: none;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 14px;
  line-height: 20px;
}

.navbar-link.small.end {
  border-bottom-style: none;
}

.dropdown-icon {
  margin: 0;
  position: static;
}

.navbar-menu-set {
  grid-row-gap: 15px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.dropdown-cover {
  margin-left: 0;
  margin-right: 0;
}

.dropdown-cover.hidden {
  display: none;
}

.navbar-dropdown-list.w--open {
  background-color: var(--main-green);
  filter: drop-shadow(0 7px 5px #0000004d);
}

.home-banner {
  width: 100%;
  height: auto;
}

.page-section {
  padding: 40px 20px;
}

.page-section.head-padding {
  padding-top: 60px;
}

.page-section.green-bg {
  background-color: var(--green-bg);
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-section.end-padding {
  padding-bottom: 60px;
}

.page-section.both-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-section.dark-green-bg {
  background-color: var(--main-green);
  color: var(--white);
  padding-top: 60px;
  padding-bottom: 60px;
}

.standard-container {
  max-width: 1200px;
}

.standard-container._1500px {
  max-width: 1500px;
}

.standard-container.full {
  max-width: 97%;
}

.standard-container.policy, .standard-container.blog {
  max-width: 1000px;
}

.section-heading {
  font-size: 40px;
  font-weight: 400;
  line-height: 47px;
}

.section-heading.page-head {
  font-weight: 500;
}

.section-heading.grid {
  font-size: 30px;
  font-weight: 600;
  line-height: 37px;
}

.section-heading.left-align {
  text-align: left;
  font-size: 50px;
  line-height: 57px;
}

.section-heading.colored-bg {
  color: var(--white);
  background-color: green;
  padding: 5px 30px;
  font-size: 30px;
  line-height: 37px;
}

.section-heading.bold {
  font-size: 50px;
  font-weight: 600;
  line-height: 57px;
}

.section-heading.section-head {
  font-size: 50px;
  line-height: 57px;
}

.section-heading.section-head.center {
  text-align: center;
}

.section-heading.blog-head {
  font-size: 45px;
  line-height: 53px;
}

.section-heading.blog-head.center {
  text-align: center;
}

.why-us-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  place-items: stretch center;
  margin-top: 100px;
}

.why-us-card {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #d1e8c9;
  border: 2px solid #91ad87;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  max-width: 330px;
  padding: 20px;
}

.why-us-heading {
  font-weight: 600;
}

.why-us-text {
  font-size: 18px;
  line-height: 23px;
}

.why-us-icon {
  width: 140px;
  height: 140px;
  margin-top: -85px;
}

.section-paragraph {
  max-width: 830px;
  font-size: 19px;
  line-height: 26px;
}

.section-paragraph._880px {
  max-width: 880px;
}

.content-card-flex {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}

.content-card-flex.no-space {
  justify-content: center;
  align-items: stretch;
}

.content-card {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  width: 24%;
}

.flex-cover {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
}

.flex-cover.left {
  justify-content: flex-start;
  align-items: flex-start;
}

.flex-cover.project {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  align-items: stretch;
}

.flex-cover._50px {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
}

.flex-cover.cookie {
  text-align: left;
  align-items: stretch;
}

.flex-cover.blog {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: left;
  align-items: stretch;
}

.content-card-image {
  object-fit: cover;
  width: 100%;
  height: auto;
}

.content-card-heading {
  color: var(--dark-2);
  font-size: 30px;
  font-weight: 500;
  line-height: 37px;
}

.content-card-text {
  font-size: 18px;
  line-height: 24px;
}

.inline-break-span {
  display: inline-block;
}

.blog-card {
  width: 24%;
  color: var(--dark-2);
  text-align: left;
  border: 1px solid #d1d1d1;
  border-radius: 3px;
  flex-flow: column;
  padding-bottom: 20px;
  text-decoration: none;
  display: flex;
}

.blog-card:hover {
  text-decoration: none;
}

.blog-card-image {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 286px;
}

.blog-card-heading {
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
}

.blog-card-heading.related {
  font-size: 25px;
  line-height: 32px;
}

.blog-card-text-cover {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  margin-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.blog-card-text-cover.button {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}

.blog-card-image-cover {
  overflow: hidden;
}

.more-button-text:hover {
  color: var(--light);
  text-decoration: underline;
}

.footer {
  background-color: var(--main-green);
  color: var(--white);
  padding-top: 40px;
}

.footer-logo {
  object-fit: cover;
  width: 400px;
  height: 115px;
}

.footer-cover {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: center;
}

.footer-social-flex {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  transition: opacity .2s;
}

.footer-social-icon:hover {
  opacity: .6;
}

.copyright-section {
  background-color: #666;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  display: flex;
}

.widget-cover {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  align-items: center;
  display: flex;
  position: fixed;
  bottom: 15px;
  right: 20px;
}

.widget-link {
  background-color: var(--white);
  filter: drop-shadow(0 0 5px #0000004d);
  border-radius: 100px;
  padding: 12px;
}

.widget-link.dark {
  background-color: #000000b3;
}

.widget-icon {
  width: 40px;
  height: 40px;
}

.widget-icon.arrow {
  width: 25px;
  height: 25px;
}

.section-heading-flex {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
}

.heading-line {
  background-color: var(--main-green);
  width: 300px;
  height: 3px;
}

.section-text {
  font-size: 19px;
  line-height: 25px;
}

.section-text.bigger {
  font-size: 22px;
  line-height: 30px;
}

.section-text.smile {
  max-width: 780px;
  font-size: 22px;
  line-height: 30px;
}

.section-content-grid {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  width: 100%;
}

.section-content-grid._3-columns {
  grid-template-columns: 1fr 1fr 1fr;
}

.section-content-grid._4-columns {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.section-content-grid.map {
  grid-template-columns: 1.25fr 1fr;
}

.section-grid-image {
  width: 100%;
  height: auto;
}

.section-grid-card {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  text-align: left;
  justify-content: center;
  align-items: flex-start;
}

.section-grid-text {
  font-size: 20px;
  line-height: 27px;
}

.section-grid-text.small {
  font-size: 17px;
  line-height: 26px;
}

.program-grid {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 40px;
}

.program-grid._4-columns {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.program-grid.video {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
}

.program-card {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  text-align: left;
}

.program-card.center {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
}

.program-card.video {
  text-align: center;
  align-items: stretch;
  width: 32%;
}

.program-image {
  width: 100%;
  height: auto;
}

.program-heading {
  font-size: 30px;
  font-weight: 500;
  line-height: 37px;
}

.program-text {
  font-size: 18px;
  line-height: 26px;
}

.heading-group {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
}

.heading-sub-head {
  font-size: 30px;
  font-weight: 500;
  line-height: 37px;
}

.heading-sub-head.smaller {
  font-size: 25px;
  font-weight: 400;
  line-height: 32px;
}

.heading-sub-head.bigger {
  font-size: 50px;
  font-weight: 600;
  line-height: 57px;
}

.heading-sub-head.smile {
  max-width: 700px;
}

.oem-banner {
  width: 100%;
  max-width: 750px;
  height: auto;
}

.bigger-bold {
  font-size: 19px;
  line-height: 23px;
}

.youtube-lightbox {
  z-index: 1;
  color: var(--dark-2);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: transform .2s;
  display: flex;
  position: relative;
}

.youtube-lightbox:hover {
  transform: scale(1.04);
}

.youtube-lightbox.full, .youtube-lightbox-cover {
  width: 100%;
  height: auto;
}

.youtube-icon {
  width: 80px;
  height: auto;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.youtube-icon.small {
  width: 50px;
  bottom: 10px;
  right: 10px;
}

.video-heading {
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
}

.center-flex {
  justify-content: flex-start;
  align-items: center;
}

.center-flex._15px {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}

.section-image, .content-lightbox-cover {
  width: 100%;
  height: auto;
}

.doctor-profile-image {
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  height: auto;
  max-height: 750px;
}

.doctor-profile-flex {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  text-align: left;
  justify-content: center;
  align-items: flex-start;
}

.doctor-profile-group {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.profile-heading {
  font-size: 22px;
  font-weight: 500;
  line-height: 27px;
}

.profile-list {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  flex-flow: column;
  display: flex;
}

.book-card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  font-size: 15px;
  line-height: 24px;
}

.book-heading-flex {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
}

.book-image {
  width: 100%;
  height: auto;
}

.book-card-heading {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.book-heading-line {
  background-color: var(--dark-1);
  width: 150px;
  height: 2px;
}

.link-cover {
  color: var(--dark-2);
  text-decoration: none;
}

.link-cover:hover {
  color: var(--light);
  text-decoration: none;
}

.link-cover.blog-name {
  display: none;
}

.link-cover.blog-name:where(.w-variant-865728a0-6fa0-ff22-d2ea-918ccf7cede4), .link-cover.blog-name:where(.w-variant-7de3a2b1-8e63-91c4-0c5c-5c19ab0852ff) {
  display: block;
}

.link-cover.blog-name.page:where(.w-variant-865728a0-6fa0-ff22-d2ea-918ccf7cede4) {
  display: none;
}

.aritcle-breadcrumb {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: left;
  flex-flow: wrap;
  margin-bottom: 30px;
}

.hidden {
  display: none;
}

.hidden:where(.w-variant-865728a0-6fa0-ff22-d2ea-918ccf7cede4), .hidden:where(.w-variant-7de3a2b1-8e63-91c4-0c5c-5c19ab0852ff) {
  display: block;
}

.hidden.page:where(.w-variant-865728a0-6fa0-ff22-d2ea-918ccf7cede4) {
  display: none;
}

.text-group {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.policy-heading {
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
}

.policy-heading.h3-list {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.notice-list {
  margin-bottom: 10px;
}

.notice-list.number {
  list-style-type: decimal;
}

.notice-list.no-dot {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.policy-table {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: .5px solid gray;
  grid-template-columns: .5fr 1fr;
}

.policy-table-heading {
  text-align: center;
  border: .5px solid gray;
  padding: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
}

.policy-table-text {
  border: .5px solid gray;
  padding: 10px;
}

.policy-table-text.center {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-link {
  color: var(--main-green);
  text-decoration: none;
}

.text-link:hover {
  color: var(--light);
}

.sub-head-text {
  padding-left: 20px;
}

.green-color {
  color: green;
}

.blog-social-flex {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: center;
  align-items: center;
}

.social-icon {
  width: 45px;
  height: auto;
}

.blog-cover {
  align-self: center;
  width: 100%;
  height: auto;
}

.blog-text {
  font-size: 18px;
  line-height: 24px;
}

.blog-text.no-indent {
  text-indent: 0;
}

.blog-text.indent {
  text-indent: 20px;
}

.blog-text-group {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.blog-sub-head {
  font-size: 25px;
  font-weight: 500;
  line-height: 32px;
}

.blog-sub-head.h3 {
  font-size: 20px;
  line-height: 27px;
}

.blog-list-group {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}

.blog-list {
  padding-left: 30px;
}

.blog-list.number {
  list-style-type: decimal;
}

.blog-tag-flex {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: wrap;
}

.blog-tag {
  background-color: #d5d5d5;
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 14px;
  line-height: 20px;
}

.blog-tag:hover {
  background-color: var(--dark-1);
  color: var(--white);
}

.blog-related-heading {
  text-align: left;
  margin-bottom: 20px;
  font-weight: 500;
}

.related-blog-slot {
  width: 23.5%;
}

.related-blog-link {
  width: 100%;
  height: 100%;
  color: var(--dark-1);
  text-align: left;
  border: 1px solid #d1d1d1;
  border-radius: 3px;
  flex-flow: column;
  padding-bottom: 20px;
  display: flex;
}

.related-blog-link:hover {
  color: var(--light);
  text-decoration: none;
}

.footer-address {
  max-width: 400px;
}

.youtube-video-flex {
  flex-flow: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

.blog-gallery-slider {
  background-color: #0000;
  height: auto;
  overflow: hidden;
}

.blog-gallery-lightbox {
  flex: none;
  padding-left: 5px;
  padding-right: 5px;
}

.blog-gallery-mask {
  z-index: auto;
  width: 20%;
  padding-bottom: 40px;
  overflow: visible;
}

.blog-gallery-arrow {
  justify-content: center;
  align-items: center;
  width: 40px;
  font-size: 20px;
  display: flex;
}

.blog-gallery-nav {
  height: auto;
  font-size: 10px;
}

.blog-gallery-cover {
  display: flex;
}

.arrow-icon {
  width: 25px;
  margin-top: -35px;
}

.form-cover {
  position: relative;
}

.form-hidden-bar {
  z-index: 2;
  background-color: var(--white);
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 0;
}

@media screen and (max-width: 991px) {
  .web-header {
    padding-top: 0;
    top: 0;
  }

  .web-logo {
    width: 250px;
    height: 75px;
  }

  .logo-link {
    display: none;
  }

  .logo-link.mobile {
    margin-left: -30px;
    display: block;
  }

  .navbar-link {
    border-right-style: none;
  }

  .navbar-link.dropdown {
    justify-content: flex-start;
    align-items: center;
  }

  .navbar-menu-set {
    grid-row-gap: 0px;
    background-color: var(--main-green);
    flex-flow: column;
    margin-right: -45px;
  }

  .dropdown-cover {
    z-index: auto;
  }

  .navbar-dropdown-list.w--open {
    filter: none;
  }

  .page-section.dark-green-bg {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-heading.left-align, .section-heading.section-head.center {
    font-size: 40px;
    line-height: 47px;
  }

  .section-heading.blog-head {
    font-size: 30px;
    line-height: 37px;
  }

  .why-us-grid {
    grid-row-gap: 50px;
    grid-template-columns: 1fr 1fr;
    margin-top: 60px;
  }

  .why-us-icon {
    width: 120px;
    height: 120px;
  }

  .content-card-flex {
    justify-content: center;
  }

  .content-card-heading {
    font-size: 25px;
    line-height: 32px;
  }

  .content-card-text {
    font-size: 16px;
    line-height: 23px;
  }

  .blog-card {
    width: 32%;
  }

  .blog-card-image {
    height: 260px;
  }

  .blog-card-heading {
    font-size: 25px;
    line-height: 32px;
  }

  .section-content-grid._4-columns {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .section-content-grid.doctor {
    grid-template-columns: 1fr;
  }

  .section-grid-text {
    font-size: 18px;
    line-height: 23px;
  }

  .program-heading {
    font-size: 25px;
    line-height: 32px;
  }

  .youtube-icon {
    width: 50px;
  }

  .doctor-profile-image {
    object-position: 50% 30%;
    max-width: 500px;
    max-height: 550px;
  }

  .doctor-profile-image.full {
    max-height: none;
  }

  .doctor-profile-flex {
    max-width: 550px;
  }

  .related-blog-slot {
    width: 48%;
  }

  .navbar-menu-button {
    color: var(--white);
  }

  .navbar-menu-button.w--open {
    background-color: var(--dark-1);
  }

  .navbar-menu-cover {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .section-heading {
    font-size: 30px;
    line-height: 37px;
  }

  .section-heading.bold, .section-heading.section-head {
    font-size: 40px;
    line-height: 47px;
  }

  .section-heading.section-head.center {
    font-size: 30px;
    line-height: 37px;
  }

  .why-us-icon {
    width: 100px;
    height: 100px;
  }

  .content-card {
    width: 48%;
    max-width: 300px;
  }

  .flex-cover.left {
    justify-content: flex-start;
    align-items: center;
  }

  .blog-card {
    width: 47%;
  }

  .blog-card-heading {
    font-size: 23px;
    line-height: 30px;
  }

  .blog-card-heading.related {
    font-size: 20px;
    line-height: 27px;
  }

  .widget-cover {
    right: 10px;
  }

  .section-content-grid {
    grid-template-columns: 1fr;
  }

  .section-content-grid._4-columns {
    grid-template-columns: 1fr 1fr;
  }

  .section-content-grid.map {
    grid-template-columns: 1fr;
  }

  .section-grid-card {
    justify-content: center;
    align-items: center;
  }

  .program-grid, .program-grid._4-columns {
    grid-template-columns: 1fr 1fr;
  }

  .program-card.video {
    width: 48%;
  }

  .heading-sub-head {
    font-size: 25px;
    line-height: 32px;
  }

  .heading-sub-head.bigger {
    font-size: 40px;
    line-height: 47px;
  }

  .youtube-icon.small {
    width: 40px;
  }

  .youtube-video-flex {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: center;
    align-items: flex-start;
  }
}

@media screen and (max-width: 479px) {
  .web-logo {
    width: 200px;
    height: 60px;
  }

  .logo-link.mobile {
    margin-left: -20px;
  }

  .page-section.head-padding {
    padding-top: 40px;
  }

  .section-heading {
    font-size: 25px;
    line-height: 32px;
  }

  .section-heading.page-head {
    font-size: 23px;
    line-height: 30px;
  }

  .section-heading.left-align {
    font-size: 30px;
    line-height: 37px;
  }

  .section-heading.colored-bg, .section-heading.bold {
    font-size: 25px;
    line-height: 32px;
  }

  .section-heading.section-head {
    font-size: 30px;
    line-height: 37px;
  }

  .section-heading.section-head.center, .section-heading.blog-head {
    font-size: 25px;
    line-height: 32px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .why-us-icon {
    width: 80px;
    height: 80px;
    margin-top: -65px;
  }

  .section-paragraph._880px {
    font-size: 16px;
    line-height: 23px;
  }

  .content-card-flex {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .content-card {
    width: 100%;
    max-width: 300px;
  }

  .flex-cover._50px {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .blog-card {
    width: 100%;
    max-width: 350px;
  }

  .footer-logo {
    width: 300px;
    height: 95px;
  }

  .widget-cover {
    z-index: 10;
  }

  .widget-link {
    padding: 10px;
  }

  .widget-icon {
    width: 30px;
    height: 30px;
  }

  .section-text.bigger {
    font-size: 18px;
    line-height: 23px;
  }

  .section-text.smile {
    font-size: 16px;
    line-height: 23px;
  }

  .section-content-grid._3-columns {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr 1fr;
  }

  .program-card.video {
    width: 100%;
    max-width: 320px;
  }

  .program-heading {
    font-size: 20px;
    line-height: 27px;
  }

  .program-text {
    font-size: 16px;
    line-height: 23px;
  }

  .heading-sub-head {
    font-size: 23px;
    line-height: 30px;
  }

  .heading-sub-head.bigger {
    font-size: 35px;
    line-height: 42px;
  }

  .heading-sub-head.smile {
    font-size: 18px;
    line-height: 24px;
  }

  .doctor-profile-image {
    max-height: 350px;
  }

  .profile-heading {
    font-size: 20px;
  }

  .policy-table-heading {
    font-size: 18px;
    line-height: 24px;
  }

  .policy-table-text {
    font-size: 14px;
    line-height: 20px;
  }

  .blog-text {
    font-size: 16px;
    line-height: 23px;
  }

  .blog-sub-head {
    font-size: 20px;
    line-height: 27px;
  }

  .blog-related-heading {
    text-align: center;
  }

  .related-blog-slot {
    width: 100%;
    max-width: 350px;
  }

  .footer-address {
    padding-left: 20px;
    padding-right: 20px;
  }
}

#w-node-_258b4a42-6422-8a13-eb15-d4599cc7c04d-22db48ae {
  align-self: start;
}

#w-node-af4edcc6-0afe-db90-c26f-e5ea939f2d99-22db48ae {
  align-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-cd99e267-8cd7-acc0-2f37-6a0b72d98511-a9a6b5c0 {
    align-self: center;
  }

  #w-node-_7e30d079-6a6b-0d8b-4e3f-1e733d8b7891-22db48ae, #w-node-a2f264e9-6284-e87c-fff1-7c1575d421aa-22db48ae, #w-node-_258b4a42-6422-8a13-eb15-d4599cc7c04d-22db48ae, #w-node-_258b4a42-6422-8a13-eb15-d4599cc7c04e-22db48ae, #w-node-af4edcc6-0afe-db90-c26f-e5ea939f2d4e-22db48ae, #w-node-af4edcc6-0afe-db90-c26f-e5ea939f2d99-22db48ae {
    justify-self: center;
  }
}


@font-face {
  font-family: 'Kanit-Thai';
  src: url('../fonts/Kanit-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kanit-Thai';
  src: url('../fonts/Kanit-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kanit-Thai';
  src: url('../fonts/Kanit-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Kanit-Thai';
  src: url('../fonts/Kanit-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kanit-Thai';
  src: url('../fonts/Kanit-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kanit-Thai';
  src: url('../fonts/Kanit-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kanit-Thai';
  src: url('../fonts/Kanit-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Kanit-Thai';
  src: url('../fonts/Kanit-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Kanit-Thai';
  src: url('../fonts/Kanit-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Kanit-Thai';
  src: url('../fonts/Kanit-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}