@import url("//fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");
@font-face {
  font-family: 'Ekachon';
  src: url(https://donation.baannokkamin.org/public/assets/fonts/ekachon-regular.woff2);
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption, select {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

*:focus {
  outline: none;
}

.text-red{color:red;}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: var(--font-family), 'Poppins', sans-serif;
  font-weight: 400;
  background-color: #fff;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
	color: var(--color-blue);
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #2a2a2a;
  font-weight: 700;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 30px;
  color: #afafaf;
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
  background: #F8F9FA;
  font-family: var(--font-family), 'Poppins', sans-serif;
}

::-moz-selection {
  background: var(--color-blue);
  color: #fff;
}

.text-button a {
  font-size: 14px;
  color: var(--color-blue);
  font-weight: 500;
  transition: all .3s;
}

.text-button a i {
  margin-left: 5px;
  transition: all .3s;
}

.text-button a:hover i {
  margin-left: 10px;
}

.border-button a {
  font-size: 14px;
  color: var(--color-blue);
  background-color: transparent;
  border: 1px solid var(--color-blue);
  padding: 12px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.border-button a:hover {
  background-color: var(--color-blue);
  color: #fff;
}

.main-button a {
  font-size: 14px;
  color: #fff;
  background-color: var(--color-blue);
  border: 1px solid var(--color-blue);
  padding: 12px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.main-button a:active, .main-button.orange a:active, .main-button.red a:active {
  transform: scale(0.92);
}


.main-button.orange a {
  background-color: var(--color-orange);
  border: none;
}

.main-button.red a {
  background-color: var(--color-red);
  border: none;
}

.section-heading {
  position: relative;
  z-index: 2;
  margin-top: 0px;
  margin-bottom: 80px;
  text-align: left;
}

.section-heading h2 {
  margin-top: 0px;
  margin-bottom: 20px;
  line-height: 36px;
  font-size: 30px;
  font-weight: 700;
  text-transform: capitalize;
  color: #2a2a2a;
}

/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-blue);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: var(--color-blue);
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: var(--color-orange);
  border-radius: 50%;
}



/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/
.header-area {
  position: relative;
  height: 70px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.header-area.header-sticky {
  position: sticky !important;
}

.header-area .main-nav {
  background: transparent;
  display: flex;
  padding: 0px 10px;
}

.header-area .main-nav .logo {
  flex-basis: 30%;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-area .main-nav .logo img {
  width: auto;
  height: 38.5px;
  margin-top: 15px;
}

.header-area .main-nav .nav {
  flex-basis: 70%;
  justify-content: flex-end;
  vertical-align: middle;
  margin-top: 15px;
  margin-right: 0px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-menu .nav {
  flex-basis: 100%;
  justify-content: space-between;
  vertical-align: middle;
  margin-top: 23px;
  margin-right: 0px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-link {
  padding: 0 10px;
}

.header-area .main-nav .nav li {
  padding-left: 5px;
  padding-right: 5px;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: transparent;
  padding: 8px 15px;
  position: relative;
  border-radius: 18px;
  letter-spacing: 0.5px;
}

/* .header-area .main-nav .nav li.has-sub ul.sub-menu li:last-child a:hover {
  padding-left: 25px !important;
} */

/* .header-area .main-nav .nav li:hover a {
  opacity: 0.8;
} */

.header-area .main-nav .nav li a.active::after {
  width: 20px;
  height: 2px;
  background-color: var(--color-blue);
  position: absolute;
  content: '';
  left: 15px;
  top: 2px;
}

.header-area .main-nav .nav li.has-sub {
  position: relative;
  padding-right: 15px;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 20px;
  display: none;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #fff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #fff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #fff;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #fff;
}


/* Animations */
@keyframes progressBarFill {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0;
  }
}


/* 
---------------------------------------------
main-body
--------------------------------------------- 
*/

.main-body {
  min-height: calc(100vh - 70px);
}

/* 
---------------------------------------------
Service
--------------------------------------------- 
*/

.service-title {

  padding: 20px 10px 20px 10px;
}

.service-item {
  text-align: center;
  font-size: 14px;
  padding: 20px 5px;
  border-radius: 20px;
  margin: 5px 2.5px;
  background-color: #fff;
  /* background: linear-gradient(var(--color-blue) 0%, var(--color-blue) 20%, #fff 100%) !important; */
}

.service-item:hover, .service-item:active {
  transform: scale(0.92);
}

.service-img {
  width: auto;
  height: 45px;
  display: block;
  margin: auto;
}

.service-item span {
  font-size: 20px;
  color: var(--color-blue);
  display: block;
  margin-top: 10px !important;
}

.btn.bg-blue:hover, .btn.bg-blue:focus {
  color: var(--color-blue) !important;
  background-color: var(--color-light-blue);
}

.btn.bg-blue:active {
  color: var(--color-blue) !important;
  background-color: var(--color-light-blue);
  transform: scale(0.92);
}

/* 
---------------------------------------------
Menu Style
--------------------------------------------- 
*/

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: var(--color-orange);
  font-weight: bold;
}

.form-input, .form-select {
  width: 100%;
  background-color: transparent;
  border-radius: 23px;
  border: 1px solid #e0e0e0;
  padding: 0px 20px;
  cursor: pointer;
}

.form-input:focus, .form-select:focus {
  border: 2px solid var(--color-blue) !important;
}

.form-check-input:checked {
  background-color: var(--color-blue);
  border-color: var(--color-blue);
}

/* 
---------------------------------------------
ฺBooking Style
--------------------------------------------- 
*/

.info-item {
  text-align: center;
}

.info-item .info-photo {
  width: auto;
  height: 60px;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  margin-bottom: 10px;
  overflow: hidden;
}

.info-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-item a {
  font-size: 15px;
}
.table-time > tbody > tr > td {
  padding: 15px;
  border: 3px solid var(--color-blue2); 
}

.table-time > tbody > tr > td:hover {
  background-color: #dee2e6;
}

.table-time > tbody > tr > td.active,
.table-time > tbody > tr > td:active {
  color: #fff;
  background-color: var(--color-blue2);
}

.table-time > tbody > tr > td.disabled {
  background-color: #dee2e6;
  cursor: default;
}

.slider-content .item .thumb {
  width: 100%;
  height: 150px;
  position: relative;
  border: 3px solid var(--color-blue2);
  /* border-radius: 10px; */
  overflow: hidden;
  padding: 20px;
}

.slider-content .item .thumb h2 {
  top: 50%;
  bottom: 50%;
  font-size: 60px;
  color: var(--color-blue2);
}

.slider-content .item .thumb h4 {
  /* position: absolute; */
  left: 30px;
  bottom: 30px;
  font-size: 20px;
  color: var(--color-blue2);
}

.owl-nav {
  position: absolute;
  top: -42px;
  right: 0;
}

.owl-nav .owl-next span {
  display: none;
}

.owl-nav .owl-next::after {
  font-family: "FontAwesome";
  content: '\f061'; 
  color: var(--color-blue);
  font-size: 20px;
  transition: all .3s;
}

.owl-nav .owl-prev span {
  display: none;
}

.owl-nav .owl-prev::after {
  font-family: "FontAwesome";
  content: '\f060'; 
  color: var(--color-blue);
  margin-right: 15px;
  font-size: 20px;
  transition: all .3s;
}

.owl-nav .owl-prev:hover::after,
.owl-nav .owl-next:hover::after {
  color: var(--color-orange);
}

/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
  overflow-x: hidden;
}

@media (max-width: 575px) {
}

@media (max-width: 767px) {
}

@media (max-width: 992px) {
}

@media (max-width: 1200px) {
}

/* 
---------------------------------------------
Color
--------------------------------------------- 
*/

.text-blue {
  color: var(--color-blue) !important;
}

.text-orange {
  color: var(--color-orange) !important;
}

.text-light-blue {
  color: var(--color-light-blue) !important;
}

.bg-blue {
  background-color: var(--color-blue) !important;
}

.bg-gradient-bo {
  background: linear-gradient(var(--color-blue) 0%, var(--color-blue) 70%, var(--color-blue2) 80%, var(--color-orange) 100%) !important;
}

.bg-orange {
  background-color: var(--color-orange) !important;
}

.bg-light-blue {
  background-color: var(--color-light-blue) !important;
}

.bg-body {
  background: #f2f2f2 !important;
}

.main2menu {
	display:none;
}

.subsection{
	display:none;
}

.card-header{
	color:white;
}
.img-nav {
    width: 100%;
    height: auto;
    vertical-align: top;
}
.div-nav {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.input-5{
	width: 5rem;
}

.modal-body span{
	font-weight:Normal !important;
}

#map {
  height: 400px;
  /* The height is 400 pixels */
  width: 100%;
  /* The width is the width of the web page */
}