/* -----------------------------------------------
Basic Setting
------------------------------------------------- */
/*--- Font ---*/
/*--- Path of Image ---*/
/*--- Breakpoints Media Query ---*/
/*--- Link ---*/
body {
  font-size: 16px;
  font-family: Thonburi, Arial, Helvetica, Tahoma, sans-serif;
  font-weight: 300;
  line-height: 1.5em;
  color: #333;
  word-break: break-word;
}

a {
  word-break: break-word;
  color: #1DACEE;
}
a:hover, a:focus, a:active {
  color: #3C98E6;
}

b, strong {
  font-weight: 700;
}

/* -----------------------------------------------
Example Font Face
------------------------------------------------- */
/**
 * Config $font-path: '../fonts/' in _var.scss
 *
 * Use font-face @mixin font-face($family,$src,$style,$weight);
 *
 * Example 4 font weight
 * Font-weights: (Light: 300, Regular: 400, Medium: 500, SemiBold: 600, Bold: 700);
 *
 * @include font-face('Kanit', $font-path, $style: 300, $weight: normal);
 * @include font-face('Kanit', $font-path, $style: 400, $weight: normal);
 * @include font-face('Kanit', $font-path, $style: 500, $weight: normal);
 * @include font-face('Kanit', $font-path, $style: 600, $weight: normal);
 * @include font-face('Kanit', $font-path, $style: 700, $weight: normal);
 */
/*
How to use font face
------------------------------------------------- */
/**
 * .foo {
 *     font-family: Kanit;
 *     font-weight: 300; // Defualt
 * }
 * .bar {
 *     font-family: Kanit;
 *     font-weight: 600;
 * }
 */
/* -----------------------------------------------
Font Size Classes
------------------------------------------------- */
._fs-18 {
  font-size: 1.125em;
}

._fs-20 {
  font-size: 1.25em;
}

._fs-22 {
  font-size: 1.375em;
}

._fs-24 {
  font-size: 1.5em;
}

._fs-26 {
  font-size: 1.625em;
}

._fs-28 {
  font-size: 1.75em;
}

._fs-30 {
  font-size: 1.875em;
}

._fs-32 {
  font-size: 2em;
}

._fs-34 {
  font-size: 2.125em;
}

._fs-36 {
  font-size: 2.25em;
}

._fs-38 {
  font-size: 2.375em;
}

._fs-40 {
  font-size: 2.5em;
}

._fs-42 {
  font-size: 2.625em;
}

/*--- Line Height ---*/
._lh1 {
  line-height: 1em;
}

._lh1-2 {
  line-height: 1.2em;
}

._lh1-4 {
  line-height: 1.4em;
}

._lh1-5 {
  line-height: 1.5em;
}

._lh1-7 {
  line-height: 1.7em;
}

/* -----------------------------------------------
Padding Classes
------------------------------------------------- */
/**
 *
 * pa = padding
 * pt = padding-top
 * pb = padding-bottom
 * pl = padding-left
 * pr = padding-right
 *
 */
._pa-10 {
  padding: 10px;
}

._pa-15 {
  padding: 15px;
}

._pa-20 {
  padding: 20px;
}

._pa-25 {
  padding: 25px;
}

._pa-30 {
  padding: 30px;
}

._pa-35 {
  padding: 35px;
}

._pa-40 {
  padding: 40px;
}

._pt-15 {
  padding-top: 15px;
}

._pt-20 {
  padding-top: 20px;
}

._pt-25 {
  padding-top: 25px;
}

._pt-30 {
  padding-top: 30px;
}

._pt-35 {
  padding-top: 35px;
}

._pt-40 {
  padding-top: 40px;
}

._pt-50 {
  padding-top: 50px;
}

._pt-60 {
  padding-top: 60px;
}

._pt-70 {
  padding-top: 70px;
}

._pb-15 {
  padding-bottom: 15px;
}

._pb-20 {
  padding-bottom: 20px;
}

._pb-25 {
  padding-bottom: 25px;
}

._pb-30 {
  padding-bottom: 30px;
}

._pb-35 {
  padding-bottom: 35px;
}

._pb-40 {
  padding-bottom: 40px;
}

._pb-50 {
  padding-bottom: 50px;
}

._pb-60 {
  padding-bottom: 60px;
}

._pb-70 {
  padding-bottom: 70px;
}

/* -----------------------------------------------
Margin Classes
------------------------------------------------- */
/**
 *
 * ma = margin
 * mt = margin-top
 * mb = margin-bottom
 * ml = margin-left
 * mr = margin-right
 *
 */
._ma-0 {
  margin: 0;
}

._mt-0 {
  margin-top: 0;
}

._mt-10 {
  margin-top: 10px;
}

._mt-20 {
  margin-top: 20px;
}

._mt-30 {
  margin-top: 30px;
}

._mt-40 {
  margin-top: 40px;
}

._mt-50 {
  margin-top: 50px;
}

._mt-60 {
  margin-top: 60px;
}

._mt-70 {
  margin-top: 70px;
}

._mt-80 {
  margin-top: 80px;
}

._mt-90 {
  margin-top: 90px;
}

._mt-100 {
  margin-top: 100px;
}

._mb-0 {
  margin-bottom: 0;
}

._mb-10 {
  margin-bottom: 10px;
}

._mb-20 {
  margin-bottom: 20px;
}

._mb-30 {
  margin-bottom: 30px;
}

._mb-40 {
  margin-bottom: 40px;
}

._mb-50 {
  margin-bottom: 50px;
}

._mb-60 {
  margin-bottom: 60px;
}

._mb-70 {
  margin-bottom: 70px;
}

._mb-80 {
  margin-bottom: 80px;
}

._mb-90 {
  margin-bottom: 90px;
}

._mb-100 {
  margin-bottom: 100px;
}

._ml-10 {
  margin-left: 10px;
}

._ml-20 {
  margin-left: 20px;
}

._ml-70 {
  margin-left: 70px;
}

/* -----------------------------------------------
Border Radius  Classes
------------------------------------------------- */
._br-100 {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

._br-2 {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

._br-3 {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

._br-4 {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

/* -----------------------------------------------
Width Classes
------------------------------------------------- */
._w-100 {
  width: 100px;
}

._w-120 {
  width: 120px;
}

._w-140 {
  width: 140px;
}

._w-160 {
  width: 160px;
}

/* -----------------------------------------------
Display Classes
------------------------------------------------- */
._block {
  display: block !important;
}

._inline {
  display: inline;
}

._inline-block {
  display: inline-block;
}

._clearfix:before, ._clearfix:after {
  content: " ";
  display: table;
}
._clearfix:after {
  clear: both;
}

.fusion-main-menu {
  margin: 65px 0 0;
}

@media screen and (max-width: 1200px) {
  .fusion-main-menu > ul > li {
    padding-right: 10px !important;
  }

  .fusion-row .fusion-main-menu > ul > li > a, .fusion-vertical-menu-widget ul.menu li a, .side-nav li a {
    font-size: 14px !important;
  }
}
.fusion-is-sticky .fusion-main-menu {
  margin: 0;
}

.fusion-page-title-bar {
  border: 0;
}

.fusion-breadcrumbs .breadcrumb-leaf {
  display: none;
}

.fusion-page-title-bar-left .fusion-page-title-secondary {
  padding-left: 100px;
}

.fusion-mobile-nav-item a {
  line-height: 2em;
}

.top-bar {
  max-width: 1180px;
  text-align: right;
  margin: 0 auto;
  position: relative;
}
.top-bar > a.link {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99999;
  display: inline-block;
  background: #C9DDE6;
  padding: 3px 15px;
  border-radius: 15px;
  margin: 10px 0;
  font-size: 13px;
  color: #000;
}
.top-bar > a.link:hover {
  color: #1DACEE;
}

/* header */
.before-header-wrapper {
  position: relative;
  max-width: 1190px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .before-header-wrapper {
    padding: 0 0 60px;
  }
}
.before-header-wrapper .before-header {
  display: flex;
  position: absolute;
  z-index: 999999;
  right: 10px;
  top: 15px;
  align-items: center;
}
@media (max-width: 768px) {
  .before-header-wrapper .before-header {
    left: 15px;
    justify-content: center;
  }
}
.before-header-wrapper .social_links {
  padding-right: 10px;
  display: block;
  border-right: 1px solid #ccc !important;
}
.before-header-wrapper .widget .fusion-social-networks.boxed-icons .fusion-social-network-icon {
  display: inline-block;
  margin-bottom: 0 !important;
}
.before-header-wrapper .wrapper-top-bar-right {
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.before-header-wrapper .wrapper-top-bar-right .top-bar-phone {
  position: relative;
  padding-left: 30px;
}
.before-header-wrapper .wrapper-top-bar-right .top-bar-phone::before {
  content: "";
  background: url("../images/ic-phone.png") no-repeat center center;
  width: 26px;
  height: 26px;
  position: absolute;
  top: -2px;
  left: 0;
  background-size: contain;
}
.before-header-wrapper .top-bar-lang {
  border: 2px solid #1DACEE;
  background: #fff;
  display: inline-block;
  margin-left: 10px;
}
.before-header-wrapper .top-bar-lang .link {
  padding: 3px 10px;
  text-align: center;
  display: inline-block;
}
.before-header-wrapper .top-bar-lang .link.active, .before-header-wrapper .top-bar-lang .link:hover {
  color: #fff;
  background: #1DACEE;
}

.fusion-footer-widget-area {
  font-weight: 300;
}

.fusion-footer .fusion-columns > .fusion-column.col-lg-4 {
  width: 20%;
}
.fusion-footer .fusion-columns > .fusion-column.col-lg-4:first-child {
  width: 60%;
}
.fusion-footer .cc {
  font-size: 0.9em;
}
.fusion-footer .widget_media_image .widget-title {
  visibility: hidden;
  margin: 0;
}

.footer-social > .item {
  overflow: hidden;
  clear: both;
  margin: 15px 0 10px;
}
.footer-social > .item p {
  margin: 0;
}

.fusion-header-shadow .fusion-mobile-menu-design-classic,
.fusion-header-shadow .fusion-mobile-menu-design-modern {
  box-shadow: 0 10px 50px -2px #b9ccd8;
}

.person-author-wrapper {
  text-align: center;
}
.person-author-wrapper .person-name {
  font-size: 21px !important;
}
.person-author-wrapper .person-title {
  font-size: 20px !important;
  font-weight: 300;
}

.fusion-person .person-shortcode-image-wrapper {
  background: gainsboro;
}

.fusion-person .person-desc {
  background: #E4F2F9;
  margin-top: 0;
  padding: 25px 5px 0;
}

.type-post .fusion-post-title-meta-wrap .fusion-post-title {
  display: none;
}

#sliders-container {
  background: #1DACEE;
}

.tfs-slider .background-image {
  background-size: 100%;
}

.fusion-menu-item-button .menu-text,
.fusion-button-text {
  font-size: 17px;
}
@media screen and (max-width: 1200px) {
  .fusion-menu-item-button .menu-text,
.fusion-button-text {
    font-size: 14px;
    padding: 7px 15px;
  }
}

.download-attachments table {
  width: auto;
}
.download-attachments .attachment-about {
  display: none;
}

.fusion-carousel-meta span {
  display: none;
}
.fusion-carousel-meta span.fusion-date {
  display: inline-block;
}

.flexslider {
  margin: 0;
}

.post .fusion-carousel .fusion-carousel-item {
  margin-top: -8px;
}

.fusion-rollover {
  border-radius: 10px;
}

.post .fusion-image-wrapper img,
.fusion-carousel .fusion-carousel-item img {
  border-radius: 5px !important;
  -webkit-box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.3) !important;
  -moz-box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.3) !important;
  box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.3) !important;
  margin: 8px;
}

.fusion-post-slideshow .fusion-image-size-fixed,
.fusion-imageframe,
.fusion-carousel .fusion-carousel-item .fusion-image-wrapper,
.fusion-image-wrapper {
  padding-right: 15px;
  margin-right: 15px;
}

.fusion-blog-layout-grid .fusion-post-slideshow,
.fusion-blog-layout-timeline .fusion-post-slideshow {
  border-bottom: 0;
}

.fusion-imageframe img {
  margin-bottom: 15px;
}

.fusion-content-boxes.block_imagelink .content-wrapper-background {
  padding: 30px 10px;
  border-radius: 20px;
  box-shadow: 0px 1px 1px 1px #00000038;
  max-width: 230px;
  margin: 0 auto;
}
.fusion-content-boxes.block_imagelink .content-wrapper-background .heading {
  margin: 0;
}
.fusion-content-boxes.block_imagelink .content-wrapper-background .content-container {
  display: none;
}
.fusion-content-boxes.block_imagelink .content-wrapper-background .content-box-heading {
  font-weight: 400 !important;
}

.fusion-content-boxes.block_imagelink .fusion-column {
  margin-bottom: 0;
}

@media (min-width: 1025px) {
  .block-icon-donate .fusion-row {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
.page-template-100-width #main {
  padding-top: 0;
  padding-bottom: 0;
}

.wpcf7-form .wpcf7-response-output {
  padding: 10px 20px;
  text-transform: none;
}

h2.title-heading-center {
  font-weight: 500;
}

.fixed-height-200.fusion-recent-posts .columns .column .fusion-flexslider {
  max-height: 235px !important;
}
.fixed-height-200 .entry-title {
  text-align: center;
}
.fixed-height-200 .entry-title > a {
  color: #000;
}
.fixed-height-200 .entry-title > a:hover {
  color: #1DACEE;
}

.home .fusion-blog-layout-grid .flexslider .slides img {
  max-height: 235px !important;
}

h2.blog-shortcode-post-title > a {
  color: #000 !important;
}
h2.blog-shortcode-post-title > a:hover {
  color: #1DACEE !important;
}

.fusion-single-line-meta {
  font-size: 12px;
  color: #8C8C8C;
}

.block-protector {
  background-size: 100% !important;
}
.block-protector .fusion-recent-posts .columns .column {
  background: #1CA9E2;
  padding: 0;
  border-radius: 20px;
  box-shadow: 0px 0px 5px 1px #00000038;
}
@media (min-width: 768px) {
  .block-protector .fusion-recent-posts .columns .column {
    width: 97%;
    margin: 0 0 15px;
  }
}
@media (min-width: 1024px) {
  .block-protector .fusion-recent-posts .columns .column {
    width: 45%;
    margin: 0 5%;
  }
}
@media (min-width: 1025px) {
  .block-protector .fusion-recent-posts .columns .column {
    width: 47%;
    margin: 0 5% 0 0;
  }
}
.block-protector .fusion-recent-posts .columns .column .recent-posts-content {
  padding: 5px 15px;
}
.block-protector .fusion-recent-posts .columns .column .recent-posts-content p {
  color: #fff;
}
.block-protector .fusion-recent-posts .columns .column .recent-posts-content .entry-title a {
  color: #fff;
}
.block-protector .fusion-recent-posts .columns .column .recent-posts-content .entry-title a:hover {
  color: #D2ECF6;
}
.block-protector .fusion-recent-posts .columns .column .recent-posts-content .meta {
  background: #fff;
  border-radius: 10px;
  display: inline-block;
  padding: 2px 10px;
  margin: 10px 0;
}
.block-protector .fusion-recent-posts .columns .column:last-child {
  margin: 0;
  background: #3C98E6;
}
@media only screen and (max-width: 767px) {
  .block-protector .fusion-columns .fusion-column:not(.fusion-column-last) {
    margin: 0 0 10px;
  }
}
@media only screen and (max-device-width: 640px) and (min-device-width: 320px) {
  .block-protector .fusion-columns .fusion-column {
    float: none;
    width: 90% !important;
    margin: 0 5% 5% !important;
  }
}

.block-protector-register {
  background: #D2ECF6;
  border-radius: 20px;
  box-shadow: 0px 0px 5px 1px #00000038;
}
.block-protector-register .fusion-column-wrapper {
  border-radius: 20px;
}
.block-protector-register .fusion-column-wrapper .fusion-imageframe {
  padding-right: 0;
  display: block;
}
.block-protector-register .fusion-column-wrapper .fusion-imageframe img {
  border-radius: 20px;
  width: 100%;
}
.block-protector-register .fusion-column-wrapper .fusion-text {
  margin: 20px;
}
.block-protector-register .fusion-column-wrapper .fusion-button-wrapper {
  margin: 10px;
}
.block-protector-register .fusion-column-wrapper .fusion-button-wrapper .fusion-button {
  padding: 20px 15px;
}

.title-on-img .fusion-recent-posts .columns .column {
  position: relative;
  margin: 0 0 1.5rem;
}
.title-on-img .entry-title > a {
  color: #fff;
}
.title-on-img .entry-title > a:hover {
  color: #1DACEE !important;
}
.title-on-img .recent-posts-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+1,000000+100&0+0,0.8+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.01) 1%, rgba(0, 0, 0, 0.9) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.01) 1%, rgba(0, 0, 0, 0.9) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.01) 1%, rgba(0, 0, 0, 0.9) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#cc000000",GradientType=0 );
  /* IE6-9 */
  margin: 0px 15px;
  display: inline-block;
  width: calc(100% - 30px);
  padding: 0 20px;
}
.title-on-img .recent-posts-content .entry-title > a {
  color: #fff;
}
.title-on-img .recent-posts-content .entry-title > a:hover {
  color: #1DACEE !important;
}
.title-on-img .recent-posts-content .meta {
  color: #fff !important;
  font-size: 13px !important;
}

.block-1highlight .fusion-column-first .fusion-recent-posts .columns .column h4 {
  background: #eaeff2;
  margin: 0;
  padding: 20px;
  text-align: center;
}
.block-1highlight .fusion-column-first .fusion-recent-posts .columns .column h4 > a {
  color: #000;
}
.block-1highlight .fusion-column-first .fusion-recent-posts .columns .column h4 > a:hover {
  color: #1DACEE !important;
}

.fusion-recent-posts.layout-thumbnails-on-side .columns .column .floated-slideshow {
  width: 200px;
}
@media (max-width: 767px) {
  .fusion-recent-posts.layout-thumbnails-on-side .columns .column .floated-slideshow {
    max-width: 100%;
  }
}

#wrapper .meta {
  color: #8C8C8C;
  font-size: 13px;
}

/* default bg */
.wrapper-bg-contain {
  background-size: 50%;
}

.related-posts .fusion-carousel-item .fusion-carousel-title {
  font-size: 1.15rem !important;
  padding: 0 8px 10px;
}
.related-posts .fusion-carousel-item .fusion-carousel-meta {
  padding: 0 8px;
}

body .unknown_prf .btn-main .tooltip-main-text-toggle {
  display: none !important;
}

body .unknown_prf .btn-call #tooltip-call,
body .unknown_prf .btn-form #tooltip-form,
body .unknown_prf .btn-line #tooltip-line,
body .unknown_prf .btn-location #tooltip-location,
body .unknown_prf .btn-main #tooltip-main,
body .unknown_prf .btn-messenger #tooltip-messenger {
  background-color: #c4e5f9 !important;
}

body .unknown_prf .btn-call .tooltip-triangle:before,
body .unknown_prf .btn-main .tooltip-triangle:before,
body .unknown_prf .btn-form .tooltip-triangle:before,
body .unknown_prf .btn-line .tooltip-triangle:before,
body .unknown_prf .btn-location .tooltip-triangle:before,
body .unknown_prf .btn-messenger .tooltip-triangle:before {
  border-left: 21px solid #c4e5f9 !important;
}

.fusion-date-and-formats .fusion-date {
  font-size: 1.5rem;
}

.fusion-date-and-formats .fusion-date-box {
  font-size: 0.9rem;
}

/*----------------------------------
Component : Title
Variants : -
By : -
----------------------------------*/
.fusion-modal h1, .fusion-page-title-bar h1,
.fusion-title h1, .fusion-widget-area h1, .post-content h1,
.sidebar .widget h4 {
  font-family: "Prompt", Thonburi, sans-serif;
  font-weight: 500;
}

.fusion-footer-widget-area {
  font-family: "Prompt", Thonburi, sans-serif;
}

.wpcf7-form input[type=submit] {
  font-size: 16px;
}

/* Button */
.download-icon {
  padding: 11px 23px;
  background: #1ca9e2;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#1ca9e2, endColorstr=#1ca9e2);
  transition: all 0.2s;
  border-width: 0px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-border-radius: 2px;
  font-family: "Prompt", Thonburi, sans-serif;
  font-weight: 500;
  display: block;
}
.download-icon:hover {
  background: #3c98e6;
  color: rgba(255, 255, 255, 0.9);
}

.block-title h2.title-heading-center {
  font-size: 40px !important;
  color: #000;
  font-weight: 400 !important;
  line-height: 1.5em !important;
}

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