@import "vendor/bootstrap/bootstrap-reboot.min.css";
@import "vendor/bootstrap/bootstrap-grid.min.css";
.flex-middle {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-v-middle {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.text-aligncenter {
  text-align: center;
}

.text-alignright {
  text-align: right;
}

.no-border {
  border: none;
}

.-add-bg {
  background: rgb(27, 117, 160);
  background: linear-gradient(34deg, #46a5db 0%, #1f539f 100%);
}

.-bg-green {
  background: #036c39;
}

.-img-full {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.color-green {
  color: #036c39 !important;
}

.btn {
  min-width: 200px;
  padding: 4px 15px;
  text-align: center;
  color: #00b0b5;
  display: inline-block;
  font-size: 24px;
  outline: 0;
  border: 5px solid #00b0b5;
  cursor: pointer;
  transition: all 0.25s ease;
}
@media (max-width: 569px) {
  .btn {
    font-size: 20px;
    border-width: 3px;
  }
}
.btn:hover {
  color: #fff;
  background: #00b0b5;
}
.btn:active, .btn:focus {
  outline: 0;
}
.btn.btn-white {
  color: #fff;
  border-color: #fff;
}
.btn.btn-white:hover {
  background: #fff;
  color: #00b0b5;
}

.box-button {
  margin-top: 25px;
}

body {
  background: #fff;
  font-size: 18px;
  padding-top: 82px;
}
@media (min-width: 768px) {
  body {
    padding-top: 113px;
  }
}
@media (min-width: 992px) {
  body {
    font-size: 20px;
    padding-top: 136px;
  }
}
@media (min-width: 1360px) {
  body {
    font-size: 24px;
  }
}

img {
  max-width: 100%;
}

.box-page-title {
  background: rgb(27, 117, 160);
  background: linear-gradient(34deg, #46a5db 0%, #1f539f 100%);
  padding: 10px 0;
}
@media (min-width: 768px) {
  .box-page-title {
    padding: 15px 0;
  }
}
.box-page-title .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .box-page-title .container {
    flex-wrap: nowrap;
  }
}
@media (min-width: 768px) {
  .box-page-title .page-title {
    width: auto;
  }
}
.box-page-title .page-title > img {
  height: 18px;
}
@media (min-width: 768px) {
  .box-page-title .page-title > img {
    height: 24px;
  }
}
@media (min-width: 992px) {
  .box-page-title .page-title > img {
    height: 36px;
  }
}

.header {
  width: 100%;
  top: 0;
  left: 0;
  background: rgb(27, 117, 160);
  background: linear-gradient(34deg, #46a5db 0%, #1f539f 100%);
  padding: 10px 0;
  position: fixed;
  z-index: 999;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  width: 80px;
}
@media (min-width: 768px) {
  .header .logo {
    width: 120px;
  }
}
@media (min-width: 992px) {
  .header .logo {
    width: 150px;
  }
}
.header .header-menu {
  display: flex;
}
.header .header-menu .open-menu {
  position: relative;
  margin-left: 20px;
  cursor: pointer;
}
.header .header-menu .open-menu.active .hamburger {
  opacity: 0;
}
.header .header-menu .open-menu.active .close {
  opacity: 1;
}
.header .header-menu .hamburger {
  width: 30px;
  padding-top: 5px;
  opacity: 1;
  transition: all 0.25s ease;
}
@media (min-width: 768px) {
  .header .header-menu .hamburger {
    width: 40px;
  }
}
.header .header-menu .hamburger img {
  vertical-align: top;
}
.header .header-menu .close {
  width: 25px;
  position: absolute;
  top: 1px;
  left: 50%;
  margin-left: -17px;
  opacity: 0;
  transition: all 0.25s ease;
}
@media (min-width: 768px) {
  .header .header-menu .close {
    width: 30px;
  }
}
.header .header-menu .close img {
  width: 100%;
}
.header .header-menu .open-menu.active + .main-menu {
  visibility: visible;
  opacity: 1;
}
.header .header-menu .main-menu {
  width: 100%;
  position: absolute;
  left: 0;
  top: 82px;
  background: rgb(0, 96, 148);
  background: linear-gradient(-162deg, rgb(0, 96, 148) 0%, rgb(0, 142, 201) 100%);
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s ease;
}
@media (min-width: 768px) {
  .header .header-menu .main-menu {
    top: 113px;
  }
}
@media (min-width: 992px) {
  .header .header-menu .main-menu {
    top: 136px;
  }
}
.header .header-menu .main-menu ul {
  width: 100%;
}
.header .header-menu .main-menu li {
  width: 100%;
  border-top: 1px solid #fff;
  margin-top: 1px;
  padding: 10px 0;
}
.header .header-menu .main-menu li:first-child {
  border-top: 0;
}
.header .header-menu .main-menu img {
  height: 14px;
  display: block;
}
@media (min-width: 576px) {
  .header .header-menu .main-menu img {
    height: 20px;
  }
}
.header .icon-lang {
  width: 25px;
  display: inline-block;
  margin-left: 5px;
  font-size: 14px;
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) {
  .header .icon-lang {
    width: 35px;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .header .icon-lang {
    width: 40px;
    font-size: 16px;
  }
}
.header .icon-lang img {
  display: block;
  margin-bottom: 5px;
}

.footer {
  background: rgb(0, 96, 148);
  background: linear-gradient(-112deg, #1f539f 0%, #46a5db 100%);
  padding: 20px 0;
}
@media (min-width: 1360px) {
  .footer {
    padding: 100px 0 30px;
  }
}
.footer .footer-top {
  max-width: 800px;
  margin: auto;
}
.footer .footer-top .logo {
  width: 220px;
  margin: 0 auto 20px;
}
@media (min-width: 992px) {
  .footer .footer-top .logo {
    width: 400px;
  }
}
.footer .social {
  padding-bottom: 30px;
  text-align: center;
  margin: auto;
}
@media (min-width: 768px) {
  .footer .social {
    margin: 0;
  }
}
.footer .social a {
  width: 45px;
  margin: 0 10px;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50%;
  overflow: hidden;
}
.footer .footer-menu {
  text-align: center;
}
.footer .footer-menu ul > li {
  margin: 25px 0;
}
.footer .footer-menu img {
  height: 17px;
}
@media (min-width: 768px) {
  .footer .footer-menu img {
    height: 24px;
  }
}
@media (min-width: 992px) {
  .footer .footer-menu img {
    height: 30px;
  }
}
.footer .copyright {
  color: #fff;
  font-weight: 300;
  font-size: 20px;
  margin-top: 100px;
}

.page-wrap {
  overflow: hidden;
}

.box-content {
  padding: 30px 10px;
}
@media (min-width: 992px) {
  .box-content {
    padding: 50px 30px;
  }
}
.box-content p {
  color: #fff;
  margin-top: 25px;
}
.box-content p a {
  color: #036c39;
  text-decoration: underline;
}
.box-content .img {
  max-width: 100%;
}

.section > img {
  width: 100%;
  display: block;
}

body,
button {
  font-family: "Kanit", sans-serif;
}

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

a {
  text-decoration: none;
  transition: all 0.25s ease;
}
a:hover {
  text-decoration: none;
}

p {
  margin-top: 15px;
  margin-bottom: 0;
  line-height: 1.45;
}
p:first-child {
  margin-top: 0;
}

.page-home .home-foundation .img {
  width: 350px;
  margin: auto;
}
.page-home .donate-counter {
  padding: 50px 0;
}
@media (min-width: 576px) {
  .page-home .donate-counter {
    padding: 30px;
  }
}
@media (min-width: 768px) {
  .page-home .donate-counter {
    padding: 50px;
  }
}
@media (max-width: 569px) {
  .page-home .donate-counter {
    padding: 30px 0;
  }
}
.page-home .donate-counter .box-counter {
  background: url(../img/counter.png) center center no-repeat;
  background-size: contain;
  margin: auto;
}
@media (min-width: 576px) {
  .page-home .donate-counter .box-counter {
    width: 510px;
    height: 180px;
    padding-left: 120px;
    padding-top: 55px;
  }
}
@media (min-width: 768px) {
  .page-home .donate-counter .box-counter {
    width: 640px;
    height: 180px;
    padding-left: 152px;
    padding-top: 50px;
  }
}
@media (min-width: 992px) {
  .page-home .donate-counter .box-counter {
    width: 930px;
    height: 180px;
    padding-left: 250px;
    padding-top: 40px;
  }
}
@media (min-width: 1280px) {
  .page-home .donate-counter .box-counter {
    width: 1110px;
    height: 180px;
    padding-left: 295px;
    padding-top: 25px;
  }
}
@media (max-width: 569px) {
  .page-home .donate-counter .box-counter {
    width: 345px;
    height: 100px;
    padding-left: 80px;
    padding-top: 5px;
  }
}
.page-home .donate-counter .box-counter iframe {
  width: 580px;
  display: block;
  border: 0;
}
@media (min-width: 576px) {
  .page-home .donate-counter .box-counter iframe {
    transform: scale(0.6);
    transform-origin: top left;
  }
}
@media (min-width: 768px) {
  .page-home .donate-counter .box-counter iframe {
    transform: scale(0.75);
  }
}
@media (min-width: 992px) {
  .page-home .donate-counter .box-counter iframe {
    transform: scale(1.2);
  }
}
@media (max-width: 569px) {
  .page-home .donate-counter .box-counter iframe {
    width: 230px;
  }
}
.page-home .want-refreshing {
  padding: 50px 25px;
}
@media (min-width: 992px) {
  .page-home .want-refreshing {
    padding: 100px 15px;
  }
}
.page-home .want-refreshing img {
  max-width: 1200px;
  margin: auto;
}
.page-home .home-package .box-content {
  padding-top: 0;
  padding-bottom: 80px;
}

.page-product .jiak-intro .img img {
  width: 100%;
  max-width: 250px;
}

.page-foundation .intro br {
  display: none;
}
@media (min-width: 992px) {
  .page-foundation .intro br {
    display: block;
  }
}
.page-foundation .photo img {
  padding: 15px 15px 0;
}
.page-foundation .photo .box-content p {
  color: #231f20;
}
.page-foundation .photo .box-content span {
  font-size: 1.05em;
}
.page-foundation .photo .box-content small {
  color: #137ba7;
  font-size: 0.9em;
}
.page-foundation .organization-logo {
  padding: 50px 0;
}
.page-foundation .organization-logo img {
  width: 750px;
  max-width: 100%;
  display: block;
  margin: auto;
}
.page-foundation .organization-logo .foundation-logo {
  width: 310px;
  padding: 25px 0;
}

.page-support .size {
  max-width: 1200px;
  width: 100%;
  margin-top: 0;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .page-support .size {
    margin-top: -130px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1360px) {
  .page-support .size {
    margin-top: -170px;
    margin-bottom: 50px;
  }
}
.page-support .box-content .fb {
  width: 100px;
  margin-top: 50px;
}
.page-support .box-content a {
  color: #fff;
  text-decoration: none;
}